iOS常见三方总结(更新中)

常用的三方积累

MJExtention

SSZipArchive 用于解压与压缩文件

地址:https://github.com/ZipArchive/ZipArchive

ps:比较奇葩,github上搜索ZipArchive就是它,但是用cocoapods安装时的名字是SSZipArchive

Reachability 用于检测网络环境

地址:https://github.com/tonymillion/Reachability

有两种语法,一种是普通语句,一种是Block语句,普通语句使用者高,Block用来装逼

SVProgressHUD 用于显示指示器

地址:
常用的语法:

//显示指示器 (没有蒙版,其他UIControl依然可以进行用户交互)
[SVProgressHUD show];
<过期方法,以前常用>
//显示带有蒙版的指示器 (已经过期 用Use show and setDefaultMaskType: instead代替)
[SVProgressHUD showWithMaskType:SVProgressHUDMaskTypeBlack];

<代替方法>
[SVProgressHUD show];
[SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeBlack];
//隐藏指示器
[SVProgressHUD dismiss];
原文地址:https://www.cnblogs.com/denz/p/5313710.html