10 2013 档案

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