10 2013 档案
摘要:http://rdc.taobao.org/?p=1437
阅读全文
摘要:http://mobile.51cto.com/iphone-413267.htm
阅读全文
摘要:http://www.cnblogs.com/huangtianhui/archive/2013/03/20/2972342.html
阅读全文
摘要:http://blog.sina.com.cn/s/blog_4462d1710101k4ld.html
阅读全文
摘要:https://github.com/kolyvan/kxmovie demo 项目
阅读全文
摘要:http://blog.csdn.net/kangkangz4/article/category/1089711
阅读全文
摘要:http://www.cnblogs.com/zhulin/archive/2012/03/26/2417860.html补充:还有两个比较通用的开源解决方案:OpenUDID:https://github.com/ylechelle/OpenUDIDSecureUDID:https://github.com/crashlytics/secureudid
阅读全文
摘要:列表中自找 :http://blog.csdn.net/sing_sing?viewmode=contents
阅读全文
摘要:http://blog.csdn.net/zj510/article/details/8935683
阅读全文
摘要:http://www.cnblogs.com/smileEvday/archive/2012/11/16/UIWindow.html
阅读全文
摘要:http://wenku.baidu.com/view/afffe632f111f18583d05a49.html
阅读全文
摘要:如何避免循环引用造成的内存泄漏呢: 以delegate模式为例(viewcontroller和view之间就是代理模式,viewcontroller有view的使用权,viewcontroller同时也是view的代理(处理view中的事件)): UserWebService.h #import //定义一个ws完成的delegate @protocol WsCompleteDelegate @required -(void) finished;//需要实现的方法 @end @interface UserWebService:NSObject { id delegate;...
阅读全文
摘要:历史版本ARC(Automatic Reference Counting,自动引用计数)极大地减少了Cocoa开发中的常见编程错误:retain跟release不匹配。ARC并不会消除对retain和release的调用,而是把这项原本大都属于开发者的工作移交给了编译器。这样做的好处是显而易见的,但是必须知道retain和release是仍然在使用的。ARC并不等同垃圾回收。思考下面这段代码,它对一个实例变量赋值:123@property (nonatomic, readwrite, strong) NSString *title;..._title = [NSString stringWit
阅读全文
摘要:重用实现分析 查看UITableView头文件,会找到NSMutableArray* visiableCells,和NSMutableDictnery* reusableTableCells两个结构。visiableCells内保存当前显示的cells,reusableTableCells保存可重用的cells。 TableView显示之初,reusableTableCells为空,那么tableView dequeueReusableCellWithIdentifier:CellIdentifier返回nil。开始的cell都是通过[[UITableViewCell alloc] ini..
阅读全文
摘要:https://github.com/YueRuo/NSObject-YRSerialization
阅读全文
摘要:http://my.oschina.net/joanfen/blog/133642较详细:http://www.techolics.com/apple/20120401_197_2.html
阅读全文