摘要: 1.实现单元格的删除,实现效果如下 Cpp代码-(void)viewDidLoad{[superviewDidLoad];//设置导航栏self.editButtonItem.title=@"编辑";self.navigation.rightBarButtonItem=self.editButt... 阅读全文
posted @ 2014-07-24 08:48 wx0123 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 我们要实现的效果如下。 1.修改ControlView.h,即添加变量dict,用于存储TabelView的数据源。Cpp代码#import@interfaceIkrboyViewController5:UIViewController{NSMutableDictionary*dict;}@end... 阅读全文
posted @ 2014-07-23 17:27 wx0123 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 1.最直接的方法performSelector:withObject:afterDelay:这种方法的缺点:每次要为延时写一个方法2.使用类别,用BOLCK执行[代码]c#/cpp/oc代码:01@implementation NSObject (PerformBlockAfterDelay)020... 阅读全文
posted @ 2014-07-23 14:32 wx0123 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 一组外企iOS开发的笔试题,您能回答出来吗?从群里收集来的。1 why can't NSArray contain NSInteger Instance? with which extra step can you do it?2.complete this code so that it beco... 阅读全文
posted @ 2014-07-23 08:56 wx0123 阅读(566) 评论(0) 推荐(1) 编辑
摘要: iOS SDK为HTTP请求提供了同步和异步请求两种不同的API,而且可以使用GET或POST等请求方法。我们先了解其中最为简单的同步GET方法请求。首先实现查询业务,查询业务请求可以在主视图控制器MasterViewController类中实现,其中MasterViewController.h代码... 阅读全文
posted @ 2014-07-22 11:23 wx0123 阅读(473) 评论(0) 推荐(0) 编辑
摘要: GCD为Grand Central Dispatch的缩写。 Grand Central Dispatch (GCD)是Apple开发的一个多核编程的较新的解决方法。在Mac OS X 10.6雪豹中首次推出,并在最近引入到了iOS4.0。 GCD是一个替代诸如NSThread等技术的很高效和强... 阅读全文
posted @ 2014-07-22 08:43 wx0123 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 一些IOS开发的心得:1) [Multiple Threads] IOS多线程注意, 所有的UI操作都必须在主线程上:Any code that will update the UI should be done on the main thread. Data loading should typ... 阅读全文
posted @ 2014-07-21 17:21 wx0123 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 该10大iOS开发者最喜爱的库由“iOS辅导团队”成员Marcelo Fabri组织投票选举而得,参与者包括开发者团队,iOS辅导团队以及行业嘉宾。每个团队都要根据以下规则选出五个最好的库:1)不能投自己写的库;2)排除大的架构,比如游戏类架构;3)排除不在设备上运行的库,例如CocoaPods或者... 阅读全文
posted @ 2014-07-21 14:06 wx0123 阅读(614) 评论(0) 推荐(2) 编辑
摘要: iPhone下每个app可用的内存是被限制的,如果一个app使用的内存超过20M,则系统会向该app发送MemoryWarning消息。收到此消息后,app必须正确处理,否则可能出错或者出现内存泄露。 app收到MemoryWarning后会调用:UIApplication::didReceiv... 阅读全文
posted @ 2014-07-21 10:31 wx0123 阅读(311) 评论(0) 推荐(0) 编辑
摘要: ios7新增加的icon尺寸:76 x 76:Size for iPad 2 and iPad mini (standard resolution)120 x 120 :Size for iPhone and iPod touch (high resolution)152 x 152:Size fo... 阅读全文
posted @ 2014-07-18 17:22 wx0123 阅读(405) 评论(0) 推荐(0) 编辑