摘要:
在XCode中添加ASIHTTPRequest库需要添加一些库:CFNetwork.framework,SystemConfiguration.framework,MobileCoreServices.framework,CoreGraphics.framework,libz.dylib.参考:http://allseeing-i.com/ASIHTTPRequest/Setup-instructions 阅读全文
posted @ 2013-08-22 15:41
秃鹰
阅读(104)
评论(0)
推荐(0)
摘要:
使用UIImagePickerController调用系统相机和相册,调用相机时先判断相机是否可用://相机 if (![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) { UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"系统相机不可用!" delegate:self cancelButtonTitle:@"知道了& 阅读全文
posted @ 2013-08-22 10:17
秃鹰
阅读(342)
评论(0)
推荐(0)
摘要:
1、reloadData今天在做一个小工程,自定义的cell里面有一个爱心的小按钮,如果点击这个按钮则把这个cell置顶,并且爱心变亮。我在点击按钮的事件里面,调用:[_tableView reloadData]方法,结果只能置顶,被顶下去的cell的爱心确变灰了,找了半天,才知道,reloadData方法只能在主线程当中调用,因此应该在点击按钮事件里面这样调用:[_tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];就OK了。2、键盘弹起和隐藏如果键盘弹起和隐 阅读全文
posted @ 2013-08-22 09:56
秃鹰
阅读(115)
评论(0)
推荐(0)

浙公网安备 33010602011771号