自定义NSOperation步骤很简单:
重写-(void)main方法,在里面实现想执行的任务
重写main方法时需要注意:
—自己创建自动释放池(如果是异步操作,无法访问主线程的自动释放池)
—经常通过-(BOOL)isCancelled方法检测操作是否被取消,对取消做出相应。
特别注意:定义了一个继承自NSOperation的操作类,凡是这个类的对象被添加到操作队列,就会执行它的main方法,所以把操作的内容放到main方法中即可。
https://github.com/第三方框架网站。
第三方框架介绍:
Reachability 苹果官方提供的网络状态连接框架
https://developer.apple.com/library/ios/samplecode/Reachability/Reachability.zip
AFNetworking 网络连接
https://github.com/AFNetworking/AFNetworking
ASI HTTP访问终结者 (现在几乎都不用了)
https://github.com/pokeb/asi-http-request
SDWebImage Web图像异步加载
https://github.com/rs/SDWebImage
SSKeyChain 钥匙串访问的 OC 封装
https://github.com/soffes/sskeychain
ssziparchive 解压缩
https://github.com/soffes/ssziparchive
GDataXML-HTML DOM 方式解析 XML/HTML
https://github.com/graetzer/GDataXML-HTML
fmdb SQLite 数据库
https://github.com/ccgus/fmdb
Masonry 代码实现自动布局
https://github.com/Masonry/Masonry
XMPP
https://github.com/robbiehanson/XMPPFramework
AsyncSocket GCD 异步 Socket 框架
https://github.com/robbiehanson/CocoaAsyncSocket
MBProgressHUD 进度提示
https://github.com/jdg/MBProgressHUD