2014年4月16日
摘要: 1、UIGestureRecognizer介绍手势识别在iOS上非常重要,手势操作移动设备的重要特征,极大的增加了移动设备使用便捷性。iOS系统在3.2以后,为方便开发这使用一些常用的手势,提供了UIGestureRecognizer类。手势识别UIGestureRecognizer类是个抽象类,下... 阅读全文
posted @ 2014-04-16 20:09 chenhanqing_blcu 阅读(157) 评论(0) 推荐(0)
摘要: UINavigationBar上添加背景图片之后,会影响手机最上边的颜色所以这个时候需要重新设置一下状态栏就可以了[UIApplication sharedApplication].statusBarStyle=UIStatusBarStyleBlackOpaque;这样就可以正确了。 阅读全文
posted @ 2014-04-16 19:59 chenhanqing_blcu 阅读(160) 评论(0) 推荐(0)
摘要: // NSDictionary * dict=[[NSDictionary alloc]initWithObjectsAndKeys:@"one",@"1",@"two",@"2",@"three" ,@"3",nil];// //只能在特定的路径下写文件// ... 阅读全文
posted @ 2014-04-16 19:44 chenhanqing_blcu 阅读(172) 评论(0) 推荐(0)
摘要: /***** //以只读的方式打开文件生成句柄 NSFileHandle * fh=[NSFileHandle fileHandleForReadingAtPath:@"/Users/mac/Desktop/dir/hello/file"]; //读取5个... 阅读全文
posted @ 2014-04-16 19:17 chenhanqing_blcu 阅读(161) 评论(0) 推荐(0)
摘要: NSFileManager * fm=[NSFileManager defaultManager]; NSString * path=@"/Users/mac/Desktop"; NSError * error=nil; //取得当前文件路径... 阅读全文
posted @ 2014-04-16 18:56 chenhanqing_blcu 阅读(254) 评论(0) 推荐(0)