我找的琐碎框架
1.HZExtend:应用快速开发架构集合了MVC和MVVM的特点https://github.com/GeniusBrother/HZExtend : 1.减少控制器压力以及耦合 2.带有请求状态(请求中,请求后,无网络)的网络框架 3.无网仍有数据的缓存体系 4.与表映射能操作数据库的Model 5.支持URL跳转
2.HZURLManager:根据URL进行页面跳转:https://github.com/GeniusBrother/HZURLManager
3.HZMenuView:仿今日头条的侧边栏,以UINavigationController为容器,且导航页面时不关闭的侧边栏:https://github.com/GeniusBrother/HZMenuView
牛逼框架
1.AFNetworking
目前比较推荐的iOS网络请求组件,默认网络请求是异步,通过block回调的方式对返回数据进行处理。
2.FMDB
对sqlite数据库操作进行了封装,demo也比较简单。
3.MBProgressHUD
也是iOS项目常用的一个组件,用于显示过渡效果的,比如网络请求之前显示loading,网络结束隐藏loading。建议封装在BaseViewController中,所有ViewController继承就能使用。
4.MJRefresh
这个是传智播客李明杰老师的作品,自己的oc基础就是看他的视频半个周末就基本拿下了。MJRefresh主要用于刷新操作,提供了常用的刷新操作,还有刷新动画,用着很好用。建议把方法封装在BaseViewController中,这样修改刷新操作时,就只需要改动一份。(之前用的旧版MJRefresh,只支持普通的刷新,不支持动画,后来更新后版本变化比较大,旧的方法已经不推荐使用了,所以还是封装基类中使用比较好,方便以后修改)
5.SDWebImage
也是iOS最常用的一个组件,用户加载网络图片,可以缓存到本地。大概原理时,第一次加载后,会根据url加密作为文件名缓存在本地,如果再次加载图片时,就直接从本地加载。用着也比较简单。这里也分享遇到的一个问题,先从网络加载一张小图,然后小图作为占位图,再从网络加载一张大图。
6.RDVTabBarController
一个TabBar组件,可以方便设置底部菜单的文字图片,点击效果,小红点提示等。
7.Toast
类似android的toast提示效果,封装在BaseViewController中,需要的地方进行提示。
8.XMPPFramework
iOS唯一的xmpp类库,作者在去年8月份添加了xep-0198协议支持(流管理,用于xmpp断线重连),但是通过pod进行更新时,无法下载到最新版本,可能0198还没有完善好,无法作为正式版。
9.TPKeyboardAvoiding
用户键盘弹出自动计算高度,进行屏幕滚动操作。
10.AMR
做即时通讯的音频处理,目前我们的即时通讯使用的录音文件是m4a,便于web端的音频播放。
11.TQRichTextView
用于做富文本视图控件显示,用于即时通讯的表情显示,以及资源评论的富文本显示。
12.CSGrowingTextView
用作即时通讯文本框和评论文本框使用,可以显示多行输入。
13.MJExtension
也是李明杰老师的作品,用于json转model进行使用,有点类似于java中谷歌的Gson。转换效率据说也很高,使用也比较简单,只要前后台约定好,json直接就转成了model。一个工作多年的iOS朋友说,一个项目主要的是对model层的管理,他推荐的是Mantle。不过MJ这个更轻量级点,用着也更加简单。
14.ASIHTTPRequest
也是一款网络通信的第三方库,但是很久很久没有更新了.
15.Masonry
无论是sb还是xib中加约束都不爽,这个第三方还是不错的.
16.IQKeyboardManager
管理弹出键盘的一款第三方库,有时候输入框弹出键盘后覆盖了输入框,用这个来很方便的管理. 库里的demo很简单,看了就懂.
17.QRCodeScan-master
扫描二维码,可以从相册读取图片来扫描,也可以通过字符串转换成二维码图片.
18.Core Plot
Core Plot是一个开源的2D绘图框架,具有高度可定制性,和Apple的技术紧密的整合,比如 Core Animation、Core Data 和 Cocoa Bindings。 可以绘制柱状图、折线图、饼图等多种图形,提供Mac OS X和iOS下的组件库,基本可以满足你大部分的绘图需求。
19.Crashlytics
Crashlytics是一款用于检测你开发的应用,何时在客户端设备上崩溃,并能找出其崩溃原因以及帮助开发者修复应用的工具。Crashlytics既免费又方便使用,另外,还内置一些基础的分析功能,让你无需总要依赖其他独立的分析工具。
20.awesome-ios-ui
提供了一些UI效果,有动画,有自定义的UI。文件共【96.2Mb】.效果不错,可供大家学习,不建议使用
21. FlatUIKit
提供了一些常用的控件,如UISwitcgh,UISegmentedControl,AlertView 等
22.RNThemeManager 可用于我们学习iOS app主题的开发
MAThemeKit统一修改APP主题
23.MPColorTools 处理颜色的工具类
Colours
Chameleon 轻量级且强大的颜色工具,我们可以实用它来设置文本颜色和背景颜色。非常推荐的类库
24.图片浏览控件MWPhotoBrowser
实现了一个照片浏览器类似 iOS 自带的相册应用,可显示来自手机的图片或者是网络图片,可自动从网络下载图片并进行缓存。可对图片进行缩放等操作。
下载:https://github.com/mwaterfall/MWPhotoBrowser
目前比较活跃的社区仍旧是Github,除此以外也有一些不错的库散落在Google Code、SourceForge等地方。由于Github社区太过主流,这里主要介绍一下Github里面流行的iOS库。
25.图像处理
GPUImage 无疑是这方面的集大成者了。用OpenGL ES2.0来实时处理图片和视频流,性能和功能都是顶尖的。
26.开发和调试工具
PonyDebugger 看上去是一个不错的调试工具,可以在电脑浏览器上远程调试iOS程序、查看试图层次、网络等等。CocoaLumberjack是个Log工具,号称是可以提供企业级Log,使用者也挺多。
27.OC与JS交互 WKWebView
一:源代码实例
1:快速搭建项目源代码
地址:https://github.com/wujunyang/MobileProject
2:Coding.net客户端
地址:https://coding.net/u/coding/p/Coding-iOS/git
3:高仿美团iOS版
地址:https://github.com/lookingstars/meituan
4:模仿网易新闻做的精仿网易新闻
地址:https://github.com/dsxNiubility/SXNews
5:支付宝高仿版
地址:https://github.com/gsdios/GSD_ZHIFUBAO
6:高仿百度传课iOS版
地址:https://github.com/lookingstars/chuanke
7:模仿一元云购
地址:https://github.com/JxbSir/YiYuanYunGou
8:wordpress源代码
地址:https://github.com/wordpress-mobile/WordPress-iOS
9:v2ex源代码(文章类型,若报SVProgressHUD错,则把Podfile中的SVProgressHUD移除)
地址:https://github.com/singro/v2ex
10:PHPHub客户端(IOS8.0以上)
地址:https://github.com/Aufree/phphub-ios
11:如何优化UITableView中Cell加载图片的实例
地址:https://github.com/allenhsu/UIScrollView-Samples/tree/master/LazyLoad
12:开源的IOS代码集合
地址:https://github.com/dkhamsing/open-source-ios-apps
二:第三方插件
1:基于响应式编程思想的oc
地址:https://github.com/ReactiveCocoa/ReactiveCocoa
2:hud提示框
地址:https://github.com/jdg/MBProgressHUD
3:XML/HTML解析
地址:https://github.com/topfunky/hpple
4:有文字输入时,能根据键盘是否弹出来调整自身显示内容的位置
地址:https://github.com/michaeltyson/TPKeyboardAvoiding
5:状态栏提示框
地址:https://github.com/jaydee3/JDStatusBarNotification
6:block工具包。将很多需要用delegate实现的方法整合成了block的形式
地址:https://github.com/zwaldowski/BlocksKit
7:图片加载
地址:https://github.com/rs/SDWebImage
8:正则表达式
地址:https://github.com/wezm/RegexKitLite
9:Masonry代码布局
地址:https://github.com/SnapKit/Masonry
10:弹出窗
地址:https://github.com/sberrevoets/SDCAlertView
11:Button的样式
地址:https://github.com/mattlawer/BButton
12:验证网络连接状态
地址:https://github.com/tonymillion/Reachability
13:自动计算表格行高
地址:https://github.com/forkingdog/UITableView-FDTemplateLayoutCell
14:关键帧基础动画框架,如动画效果的启动页
地址:https://github.com/IFTTT/JazzHands
15:iOS快速简单集成国内三大平台分享
地址:https://github.com/xumeng/XMShareModule
16:五项能力值展示的五边形
地址:https://github.com/dsxNiubility/SXFiveScoreShow
17:自动识别网址号码邮箱和表情的label
地址:https://github.com/molon/MLEmojiLabel
18:IM对话功能的封装
地址:https://github.com/ZhipingYang/UUChatTableView
19:字典转模型框架
地址:https://github.com/CoderMJLee/MJExtension
20:下拉上拉刷数据
地址:https://github.com/CoderMJLee/MJRefresh
21:表格行左右划动菜单
地址:https://github.com/MortimerGoro/MGSwipeTableCell
22:图文混搭
地址:https://github.com/zhouande/TLAttributedLabel
23:可以简单展示在UINavigationBar下方,类似Music app的播放列表视图,弹出菜单视图
地址:https://github.com/DrummerB/BFNavigationBarDrawer
24:比如筛选、模糊、优化、蒙版、调整大小、旋转以及保存等等。同时还提供了一个UIImageView子类从URL异步加载图片,并在下载完毕时展示图片。
地址:https://github.com/Nyx0uf/NYXImagesKit
25:底部TabBar
地址:https://github.com/robbdimitrov/RDVTabBarController
26:表情面版
地址:https://github.com/ayushgoel/AGEmojiKeyboard
27:记录框架
地址:https://github.com/CocoaLumberjack/CocoaLumberjack
28:IOS与javascript交互
地址:https://github.com/marcuswestin/WebViewJavascriptBridge
29:图表统计展示
地址:https://github.com/kevinzhow/PNChart (或https://github.com/danielgindi/ios-charts)
30:appStore评分
地址:https://github.com/arashpayan/appirater
31:iOS-Categories 扩展类大全
地址:https://github.com/shaojiankui/IOS-Categories
32:扫描二维码,仿微信效果,带有扫描条
地址:https://github.com/JxbSir/JxbScanQR
33:动效弹出视图(弹出窗里面为文字,可以定义弹出的方向,及显示的时间)--AMPopTip
地址:https://github.com/andreamazz/AMPopTip
34:基于Masonry自动计算行高扩展
地址:https://github.com/632840804/HYBMasonryAutoCellHeight
35:模仿新浪微博弹出菜单
地址:https://github.com/wwdc14/HyPopMenuView
36:搜索历史标签
地址:https://github.com/zhiwupei/SearchHistory
37:快速集成新手引导的类库
地址:https://github.com/StrongX/XSportLight
38:设置页面的封装
地址:https://github.com/renzifeng/ZFSetting
39:带箭头的弹出视图插件
地址:https://github.com/xiekw2010/DXPopover
40:下拉菜单插件
地址:https://github.com/dopcn/DOPDropDownMenu/
41:表格空白提示插件
地址:https://github.com/dzenbot/DZNEmptyDataSet
42:给任意UIView视图四条边框加上阴影,可以自定义阴影的颜色、粗细程度、透明程度以及位置(上下左右边框)
地址:https://github.com/Seitk/UIView-Shadow-Maker
43:不错的日期时间插件
地址:https://github.com/CoderXL/UUDatePicker
44:底部弹出选择
地址:https://github.com/skywinder/ActionSheetPicker-3.0
45:比较不错的引导页面插件
地址:https://github.com/ealeksandrov/EAIntroView
46:两个APP跳转的插件
地址:https://github.com/usebutton/DeepLinkKit
47:本地存取NSUserDefaults插件
地址:https://github.com/gangverk/GVUserDefaults
48:NSArray 和 NSDictionary关于LINQ的操作方式,封装一些常用的操作
地址:https://github.com/ColinEberhardt/LinqToObjectiveC
49:可以监控网络请求的内容
地址:https://github.com/coderyi/NetworkEye
50:时间帮助插件,可以快速获取时间,比较,增加等操作
地址:https://github.com/MatthewYork/DateTools
51: 不错的链式动作
地址:https://github.com/jhurray/JHChainableAnimations
52:弹出层视图,背景效果(可以自定义视图的内容)
地址:https://github.com/HJaycee/JCAlertView
53:圆形进度条的显示,中间可显示值
地址:https://github.com/mdinacci/MDRadialProgress
54:很帅的数据加载动画(可以用于数据列表加载的展现)
地址:https://github.com/NghiaTranUIT/FeSpinner
55:一个开源的AFnetworking上层的封装(猿题库等运用)
地址:https://github.com/yuantiku/YTKNetwork
56:CBStoreHouseRefreshControl:一个效果很酷炫的下拉刷新控件
地址:https://github.com/coolbeet/CBStoreHouseRefreshControl
57:AFNetworking-RACExtensions:针对ReactiveCocoa的AF封装
地址:https://github.com/CodaFi/AFNetworking-RACExtensions
58:模糊效果(毛玻璃)
地址:https://github.com/nicklockwood/FXBlurView
59:UITableView展开效果的插件
地址:https://github.com/sakkaras/SKSTableView
60:ZIP压缩及解压插件ZipArchive
地址:https://github.com/ZipArchive/ZipArchive
61:自定义UIAlertView
地址:https://github.com/lmcd/LMAlertView
62:Facebook开源的动画库Pop
地址:https://github.com/facebook/pop
63:关于使用facebook动画库的实例集合
地址:https://github.com/schneiderandre/popping
64:iOS 应用视图上添加简单闪烁效果Shimmer
地址:https://github.com/facebook/Shimmer
65:ios数据持久化插件,使得Core Data使用起来更加的便捷容易
地址:https://github.com/magicalpanda/MagicalRecord
66:创建缩合的iOS应用程序标题栏
地址:https://github.com/bryankeller/BLKFlexibleHeightBar
67:PDF阅读器核心库
地址:https://github.com/vfr/Reader
68:STPopup使弹出框也有UINavigationController的效果
地址:https://github.com/kevin0571/STPopup
69:基于核心音频,有助于进行实时,低延迟音频处理和可视化的iOS和OSX音频可视化框架
地址:https://github.com/syedhali/EZAudio
70:一个不错的弹出Sheet,可以前进跟后退,适合多个页面
地址:https://github.com/m1entus/MZFormSheetController
71:Aspect库是对面向切面编程的实现,里面封装了Runtime的方法
地址:https://github.com/steipete/Aspects
72:一个不错在无输入源的输入框,如UITableViewCell等
地址:https://github.com/slackhq/SlackTextViewController
73:小红点插件,用于提示未读效果
地址:https://github.com/weng1250/WZLBadge
74:不错的照片选择器,视频选择器,支持单多选
地址:https://github.com/mwaterfall/MWPhotoBrowser
75:含10多种的转场动画效果
地址:https://github.com/ColinEberhardt/VCTransitionsLibrary
76:左右菜单显示(类似QQ导航)
地址:https://github.com/romaonthego/RESideMenu
77:很赞的等待指示动画(比系统自带的帅)
地址:https://github.com/ninjaprox/DGActivityIndicatorView
78:KVOController一个简单安全的 KVO(Key-value Observing, 键-值 观察)工具, 提供简单方便、线程安全的API
地址: https://github.com/facebook/KVOController
79:FormatterKit 收集了很多构思优秀的 NSFormatter 子类
地址:https://github.com/mattt/FormatterKit
三:辅助软件
1:XCODE文档注解插件VVDocumenter
地址:https://github.com/onevcat/VVDocumenter-Xcode
2:将JSON格式化输出为模型的属性
地址:https://github.com/EnjoySR/ESJsonFormat-Xcode
3:图片提示插件
地址:https://github.com/ksuther/KSImageNamed-Xcode
4:图片转换插件
地址:https://github.com/rickytan/RTImageAssets
5: 测试模拟苹果通知
地址:https://github.com/KnuffApp/Knuff
6: HOStringSense 可以在弹出框写NSString,所见及所得
地址:https://github.com/holtwick/HOStringSense-for-Xcode
7:cocoapods-xcode-plugin pod相关的操作可以在xcode菜单进行
地址:https://github.com/kattrali/cocoapods-xcode-plugin
8:switch枚举的时候会自动生成代码
地址:https://github.com/stefanceriu/SCXcodeSwitchExpander
9:git中关于各个语言的gitignore
地址:https://github.com/github/gitignore
10:FLEX(Flipboard Explorer)是Flipboard官方发布的一组专门用于iOS开发的应用内调试工具
地址:https://github.com/Flipboard/FLEX
11:ponyDebugger是一个远程调试工具包,通过使用 Chrome 开发者工具来调试 iOS 应用的网络流量和数据存储
地址:https://github.com/square/PonyDebugger
12: OC编码风格规范
地址:https://github.com/NYTimes/objective-c-style-guide
@import url(http://www.cppblog.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);