摘要:
http://blog.sina.com.cn/s/blog_786beda70101ahrd.html 阅读全文
摘要:
http://bbs.9ria.com/thread-125285-1-1.html 阅读全文
摘要:
http://www.cocoachina.com/bbs/simple/?t106984.html 阅读全文
摘要:
SDWebImage是Github开源项目:https://github.com/rs/SDWebImage,它用于方便的请求、Cache网络图片,并且请求完毕后交由UIImageView显示。Asynchronous image downloader with cache support with an UIImageView category.SDWebImage作为UIImageView的一个Category提供的,所以使用起来非常简单:?123// Here we use the new provided setImageWithURL: method to load the web 阅读全文
摘要:
http://fann.im/blog/2012/08/21/afnetworking-notes/ 阅读全文
摘要:
http://bj007.blog.51cto.com/1701577/649413 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_719d537e01017x82.html 阅读全文
摘要:
retain cycle 的产生说到retain cycle,首先要提一下Objective-C的内存管理机制。作为C语言的超集,Objective-C延续了C语言中手动管理内存的方式,但是区别于C++的极其非人道的内存管理,Objective-C提出了一些机制来减少内存管理的难度。 比如:内存计数。在Objective-C中,凡是继承自NSObject的类都提供了两种方法,retain和release。当我们调用一个对象的retain时,这个对象的内存计数加1,反之,当我们调用release时, 对象的内存计数减1,只有当对象内存计数为0时,这个对象才真正会被释放,此时,对象的delloc方 阅读全文