代码改变世界

阅读排行榜

cannot modify header information - headers already sent by ,php页面报错debug

2012-06-30 16:55 by java环境变量, 337 阅读, 收藏,
摘要: 信息的时候经常提示:cannot modify header information - headers already sent by (......)。其实已经实现需要的效果了,就是这个错误信息看着不爽,网上找了很多办法,综合使用得到的解决方法是1在页面顶部的php标签中加入ob_start();2在返回的信息下面加入ob_end_flush();这样就可以屏蔽错误信息的现实了另外转一下其他人的方法,也许在其他情况下也会有效If you got this message: "Warning: Cannot modify header information - headers a 阅读全文

iPhone获取当前位置(CoreLocation的一些简单使用)

2012-03-26 10:42 by java环境变量, 337 阅读, 收藏,
摘要: 获取用户位置Core Location框架提供了三种用于追踪设备当前位置的服务,Core Location框架从内置的蜂窝,Wi-Fi或者GPS来获取位置The significant-change locationservice 提供了低耗电的方法来获取当前位置,当前位置改变时会发出通知The standard location service 提供了一种可设置的方法来获取当前位置Region monitoring 监视特定地区的跨越如果程序必须使用位置服务在程序的info.plist中添加UIRequiredDeviceCapabilities键,它是一个包含多个字符串的数组,然后添加lo 阅读全文

2676_Sudoku

2012-03-10 01:09 by java环境变量, 337 阅读, 收藏,
摘要: SudokuTime Limit:2000MSMemory Limit:65536KTotal Submissions:9679Accepted:4791Special JudgeDescriptionSudoku is a very simple task. A square table with 9 rows and 9 columns is divided to 9 smaller squares 3x3 as shown on the Figure. In some of the cells are written decimal digits from 1 to 9. The oth 阅读全文

slite 存储图片

2012-02-27 14:32 by java环境变量, 336 阅读, 收藏,
摘要: NSData * UIImageJPEGRepresentation ( UIImage *image, CGFloat compressionQuality);复制代码和NSData * UIImagePNGRepresentation ( UIImage *image);复制代码写 到这里大家可能已经明白怎样将图片导进数据库了吧!!数据库中存放图片声音等都是BLOB类型的,什么是BLOB类型呢?这个暂时先不在这里讲解了从上个方法中得到的NSData类型就是我们要转换的基本格式了。废话不多说,且看代码:/*链接数据库部分略落*/创建数据表(就建立个简单的表格)char *error;NSSt 阅读全文

IOS UIFont 设置字体

2012-08-15 15:42 by java环境变量, 335 阅读, 收藏,
摘要: label.font=[UIFontfontWithName:@"Arial-BoldItalicMT"size:24];字体名如下:Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewriter-BoldFont Family: AppleGothicFont: AppleGothicFont Family: ArialFont: ArialMTFont: Arial-BoldMTFont: Arial-BoldItalicMTFont: Arial-ItalicMTFont 阅读全文
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 110 下一页