├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | .build/ 41 | 42 | # CocoaPods 43 | # 44 | # We recommend against adding the Pods directory to your .gitignore. However 45 | # you should judge for yourself, the pros and cons are mentioned at: 46 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 47 | # 48 | # Pods/ 49 | 50 | # Carthage 51 | # 52 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 53 | # Carthage/Checkouts 54 | 55 | Carthage/Build 56 | 57 | # fastlane 58 | # 59 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 60 | # screenshots whenever they are needed. 61 | # For more information about the recommended setup visit: 62 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 63 | 64 | fastlane/report.xml 65 | fastlane/Preview.html 66 | fastlane/screenshots 67 | fastlane/test_output 68 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Deepin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DoProject 2 | 3 |

4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |

12 | 13 | ### About 14 | 从项目搭建开始,基本要使用的技术或者工具,相关技术链接或者博客地址等,后面为一些功能的实现方式,或者工具链接,更贴近一个完整项目所需要的。 15 | 16 | ### How to Use 17 | 18 | - Simply press command + F + "xxx@" to search for a keyword 19 | - Go through our *Content Menu* 20 | 21 | ### FeedBack 22 | 23 | > 大家有任何想法或者宝贵的建议,都欢迎大家提Issue或者pull request,我会及时更新。 24 | > 25 | > **deepindo@foxmail.com** 26 | 27 | ### 主目录 28 | 29 | - [基础搭建](#基础搭建) 30 | - [引导页@](#引导页) 31 | - [广告页@](#广告页) 32 | - [网络请求@](#网络请求) 33 | - [数据库相关@](#数据库相关) 34 | - [图片缓存@](#图片缓存) 35 | - [推送功能@](#推送功能) 36 | - [Bug统计功能@](#bugly) 37 | - [分享功能@](#友盟分享) 38 | - [支付功能@](#支付) 39 | - [个性化功能](#个性化功能) 40 | - [动画@](#动画) 41 | 42 | - [优化](https://www.jianshu.com/p/b8346c1a4145?utm_campaign=hugo&utm_medium=reader_share&utm_content=note&utm_source=weixin-friends) iOS性能优化的探索 43 | 44 | - [MAC相关](https://www.waitsun.com/aboutus/help)文件损坏相关帮助--爱情守望者网站 45 | 46 | 47 | 48 | 49 | 50 | ### 源目录 51 | 52 | 以下为[TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS)所总结的源目录,我会按个人总结的项目需求,做整理。 53 | 54 | - [完整App@](#完整App) 55 | - [框架@](#框架) 56 | - [react@](#react) 57 | - [framework@](#framework) 58 | - [混合开发@](#混合开发) 59 | - [样例App@](#样例App) 60 | - [安全@](#安全) 61 | - [区块链@](#区块链) 62 | - [逆向@](#逆向) 63 | - [网络@](#网络) 64 | - [网络请求@](#网络请求) 65 | - [socket@](#socket) 66 | - [网络下载@](#网络下载@) 67 | - [图像获取@](#图像获取) 68 | - [IM@](#IM) 69 | - [网络测试@](#网络测试) 70 | - [网页框架@](#网页框架) 71 | - [网络解析@](#网络解析) 72 | - [CSV](#csv) 73 | - [JSON@](#json) 74 | - [XML&HTML@](#xml&html) 75 | - [block@](#block) 76 | - [数据存储@](#数据存储) 77 | - [缓存处理@](#缓存处理) 78 | - [序列化@](#序列化) 79 | - [coreData@](#coreData) 80 | - [动画@](#动画) 81 | - [侧滑与右滑返回手势@](#侧滑与右滑返回手势) 82 | - [转场@](#转场) 83 | - [多媒体@](#多媒体) 84 | - [GIF@](#GIF) 85 | - [VR@](#VR) 86 | - [AR@](#AR) 87 | - [二维码@](#二维码) 88 | - [PDF@](#PDF) 89 | - [流媒体@](#流媒体) 90 | - [音频@](#音频) 91 | - [视频@](#视频) 92 | - [视频播放@](#视频播放) 93 | - [视频处理@](#视频处理) 94 | - [视频录制@](#视频录制) 95 | - [视频剪切@](#视频剪切) 96 | - [弹幕@](#弹幕) 97 | - [直播@](#直播) 98 | - [图像@](#图像) 99 | - [拍照@](#拍照) 100 | - [图像处理@](#图像处理) 101 | - [图像浏览@](#图像浏览) 102 | - [图像缓存@](#图像缓存) 103 | - [滤镜@](#滤镜) 104 | - [图像识别@](#图像识别) 105 | - [图像圆角@](#图像圆角) 106 | - [数据结构/算法@](#数据结构/算法) 107 | - [机器学习@](#机器学习) 108 | - [上架@](#上架) 109 | - [iOS11@](#iOS) 110 | - [应用内支付@](#应用内支付) 111 | - [Xcode8插件@](#Xcode8插件) 112 | - [动态更新@](#动态更新) 113 | - [App更新提示@](#App更新提示) 114 | - [UI@](#UI) 115 | - [综合UI@](#综合UI) 116 | - [列表@](#列表) 117 | - [TableView@](#TableView) 118 | - [TableView适配@](#TableView适配) 119 | - [CollectionView@](#CollectionView) 120 | - [下拉刷新@](#下拉刷新) 121 | - [模糊效果@](#模糊效果) 122 | - [日历三方库@](#日历三方库) 123 | - [图表@](#图表) 124 | - [颜色@](#颜色) 125 | - [scrollView@](#scrollView) 126 | - [对话交互@](#对话交互) 127 | - [隐藏与显示@](#隐藏与显示) 128 | - [HUD与Toast@](#HUD与Toast) 129 | - [对话框@](#对话框) 130 | - [Pop@](#Pop) 131 | - [通知相关@](#通知相关) 132 | - [状态栏@](#状态栏) 133 | - [导航栏@](#导航栏) 134 | - [设置@](#设置) 135 | - [Switch@](#Switch) 136 | - [Label@](#Label) 137 | - [Search@](#Search) 138 | - [主题@](#主题) 139 | - [电影选座@](#电影选座) 140 | - [瀑布流@](#瀑布流) 141 | - [菜单@](#菜单) 142 | - [Tabbar@](#Tabbar) 143 | - [进度@](#进度) 144 | - [小红点@](#小红点) 145 | - [page@](#page) 146 | - [轮播@](#轮播) 147 | - [选择器@](#选择器) 148 | - [购物车@](#购物车) 149 | - [引导@](#引导) 150 | - [按钮@](#按钮) 151 | - [类3D@](#类3D) 152 | - [其他UI@](#其他UI) 153 | - [工具@](工具@) 154 | - [提醒用户评分@](@提醒用户评分) 155 | - [压缩解压@](@压缩解压) 156 | - [Category@](#Category) 157 | - [代码片@](#代码片) 158 | - [Color@](#Color) 159 | - [Github相关@](#Github相关) 160 | - [键盘@](#键盘) 161 | - [文本@](#文本) 162 | - [文本输入@](#文本输入) 163 | - [富文本@](#富文本) 164 | - [表情@](#表情) 165 | - [字体@](#字体) 166 | - [多线程@](#多线程) 167 | - [ipad@](#ipad) 168 | - [通讯@](#通讯) 169 | - [AutoLayout@](#AutoLayout) 170 | - [学习资料@](#学习资料) 171 | - [播客@](#播客) 172 | - [其他开源@](#其他开源) 173 | - [博客@](#博客) 174 | - [学习笔记@](#学习笔记) 175 | - [书籍@](#书籍) 176 | - [CodeLiararyWebSite@](#CodeLiararyWebSite) 177 | - [设计@](#设计) 178 | - [美工资源@](#美工资源) 179 | - [文章@](#文章) 180 | - [优化@](#优化@) 181 | - [测试调试@](#测试调试) 182 | - [Xcode工具@](#Xcode工具) 183 | - [Runtime@](#Runtime) 184 | - [Xcode插件@](#Xcode插件) 185 | - [接口调试工具@](#接口调试工具) 186 | - [UI调试@](#UI调试) 187 | - [版本适配@](#版本适配) 188 | - [深度链接@](#深度链接) 189 | - [WebView与WKWebView@](#WebView与WKWebView) 190 | - [游戏@](#cocos2d-objc) 191 | - [通讯录@](#通讯录) 192 | - [地图@](#地图) 193 | - [其他库@](#其他库) 194 | - [三方@](#三方) 195 | - [三方分享、支付、登录等等@](#三方分享、支付、登录等等) 196 | - [消息相关@](#消息相关) 197 | - [消息推送客户端@](#消息推送客户端) 198 | - [消息推送服务器端@](#消息推送服务器端) 199 | - [通知相关请搜索“对话交互@”@](#通知相关请搜索“对话交互@”@) 200 | - [时间日期@](#时间日期) 201 | - [设计模式@](#设计模式) 202 | - [版本管理@](#版本管理) 203 | - [Git用法@](#Git用法) 204 | - [GitHub@](#GitHub) 205 | - [GitBook@](#GitBook) 206 | - [Git文章@](#Git文章) 207 | - [GithubRank@](#GithubRank) 208 | - [桌面工具@](#桌面工具) 209 | - [Github客户端@](#Github客户端) 210 | - [Github插件@](#Github插件) 211 | - [命令行@](#命令行) 212 | - [Git平台与工具@](#Git平台与工具) 213 | - [Github项目@](#Github项目) 214 | - [Git库@](#Git库) 215 | - [Github浏览器工具@](#Github浏览器工具) 216 | - [皮肤@语言国际化@](#皮肤#语言国际化) 217 | - [版本新API的Demo@](#版本新API的Demo) 218 | - [AppleWatch@](#AppleWatch) 219 | - [VPN@](#VPN) 220 | - [mac@](#mac) 221 | - [开发环境@](#开发环境) 222 | - [深度学习@](#深度学习) 223 | - [前端@](#前端) 224 | - [后台@](#后台) 225 | - [AppHTTPServer@](#AppHTTPServer) 226 | 227 | 228 | *** 229 | 230 | #### 完整App@ 231 | 232 | * [GitHubRank](http://githubrank.com/) - GitHub活跃用户排名(便于学习,请勿攀比). 233 | * [expo](https://github.com/expo/expo) - Expo iOS/Android Client https://docs.expo.io/. 234 | * [PPRows for Mac](https://github.com/jkpang/PPRows) - 在Mac上优雅的计算你写了多少行代码. 235 | * [NewsBlur](https://github.com/samuelclay/NewsBlur) - 作者独自一个人 Samuel Clay 做出来的一款名为 NewsBlur 的新闻阅读器, 很多人都称其为 Google Reader 的替代品, 这是它的源码. 236 | * [HackerNews-React-Native](https://github.com/iSimar/HackerNews-React-Native) - 用React Native 完成的 HackerNews 客户端. 237 | * [WeChat](https://github.com/zhengwenming/WeChat)- 实现类似微信朋友圈或者QQ空间,评论回复,九宫格布局。处理键盘弹出后定位到当前点击的被评论人处。另:滑动时候FPS在57-60之间,纵享丝滑. 238 | * [MessageDisplayKit](https://github.com/xhzengAIB/MessageDisplayKit) - An IM App like WeChat App has to send text, pictures, audio, video, location messaging, managing local address book, share a circle of friends, drifting friends, shake a fun and more interesting features. 239 | * [iOSAppTemplate](https://github.com/tbl00c/iOSAppTemplate) - 高仿微信,iOS应用开发模板,个人总结. 240 | * [Bilibili_Wuxianda](https://github.com/MichaelHuyp/Bilibili_Wuxianda) - 赞 高仿Bilibili客户端. 241 | * [Coding-iOS](https://github.com/Coding/Coding-iOS) - Coding iOS 客户端源代码. 242 | * [Coding-iPad](https://github.com/Coding/Coding-iPad) - Coding iPad 客户端源代码. 243 | * [Monkey](https://github.com/coderyi/Monkey) - GitHub第三方iOS客户端. 244 | * [firefox-ios](https://github.com/mozilla/firefox-ios) Firefox for iOS. 245 | * [RSSRead](https://github.com/ming1016/RSSRead) - “已阅”(iOS上开源RSS新闻阅读器). 246 | * [zulip-ios](https://github.com/zulip/zulip-ios) - Dropbox收购公司内部社交服务商Zulip,然后全部开源,这是iOS App. 247 | * [ChatSecure-iOS](https://github.com/ChatSecure/ChatSecure-iOS) - Objective-C写的XMPP聊天应用. 248 | * [FirebaseChat](https://github.com/relatedcode/FirebaseChat) - Objective-C写的完整的聊天应用. 249 | * [Meizi](https://github.com/Sunnyyoung/Meizi) - 豆瓣妹子图iOS客户端. 250 | * [PlainReader](https://github.com/guojiubo/PlainReader) - 简阅是一款 iOS(iPhone + iPad) 新闻类客户端,内容抓取自 cnBeta.COM。在售期间倍受好评,但由于版权问题已于今年一月从 AppStore 下架,下架至今,每天仍有几千人在使用这款 App. 251 | * [ECMobile_iOS](https://github.com/GeekZooStudio/ECMobile_iOS) - 基于ECShop的手机商城客户端. 252 | * [wikipedia-ios](https://github.com/wikimedia/wikipedia-ios) - 维基百科官方App, 已上架. 253 | * [Sol](https://github.com/comyarzaheri/Sol) - 漂亮的扁平风格的天气App. 254 | * [v2ex](https://github.com/singro/v2ex) - v2ex第三方iOS客户端。V2EX是一个知名技术创意网站,由设计师、程序员及有创意的人参与的社区. 255 | * [WNXHuntForCity](https://github.com/ZhongTaoTian/WNXHuntForCity) - 城觅By-Objective-C. 256 | * [breadwallet](https://github.com/voisine/breadwallet) - breadwallet - bitcoin wallet. 257 | * [GreatReader](https://github.com/semweb/GreatReader) - GreatReader PDF阅读客户端. 258 | * [Tropos](https://github.com/thoughtbot/Tropos) - 天气客户端. 259 | * [WordPress-iOS](https://github.com/wordpress-mobile/WordPress-iOS) - WordPress iOS官方客户端. 笔者强烈推荐的开源项目. 260 | * [TeamTalk](https://github.com/mogujie/TeamTalk) - 蘑菇街TeamTalk. 开源IM. 笔者强烈推荐. 261 | * [MessageDisplayKit](https://github.com/xhzengAIB/MessageDisplayKit) - 一个类似微信App的IM应用,拥有发送文字、图片、语音、视频、地理位置消息,管理本地通信录、分享朋友 圈、漂流交友、摇一摇和更多有趣的功能。 262 | * [iOS-Oncenote](https://github.com/chenyufeng1991/iOS-Oncenote) - 这是一款类似于印象笔记Evernote的生活类iOS应用——朝夕笔记 Oncenote。我希望能为更多的iOS开发者提供帮助与服务. 263 | * [GSD_WeiXin](https://github.com/gsdios/GSD_WeiXin) 高仿微信. 264 | * [v2ex](https://github.com/singro/v2ex) - v2ex 的客户端,新闻、论坛. 265 | * [wikipedia-ios](https://github.com/wikimedia/wikipedia-ios) - wikipedia-ios 客户端. 266 | * [DeckRocket](https://github.com/jpsim/DeckRocket) - 在相同 WiFi 网络环境内,通过iPhone 控制并播放 Mac 中的 PDF 文档. 267 | * [DSLolita](https://github.com/sam408130/DSLolita) - 模仿新浪微博做的一款app,有发送博文,评论,点赞,私聊功能. 268 | * [STPhotoBrowser](https://github.com/STShenZhaoliang/STPhotoBrowser) - 高仿新浪微博的图片浏览器,极佳的编写方式,易扩展,低耦合. 269 | * [Tropos](https://github.com/thoughtbot/Tropos) - Tropos, 由 thoughtbot 推出的一款用 Objective-C 写的开源天气类应用. 270 | * [SmileWeather](https://github.com/liu044100/SmileWeather) - 开源天气类应用,天气图标很完整. 271 | * [MVVMReactiveCocoa](https://github.com/leichunfeng/MVVMReactiveCocoa) - 基于MVVM的GitBucket客户端2.0.[AppStore地址](https://itunes.apple.com/cn/app/id961330940?mt=8),欢迎下载使用GitBucket和收藏MVVMReactiveCocoa. 272 | * [Tomate](https://github.com/dasdom/Tomate) - 这个圆盘式计时器让你更专注于工作或学习。P.S. App Store 上架收费应用(0.99 欧). 273 | * [WNXHuntForCity](https://github.com/ZhongTaoTian/WNXHuntForCity) - iOS高仿城觅项目(开发思路和代码). 274 | * [ZYChat](https://github.com/zyprosoft/ZYChat) - 关于聊天界面的可消息类型扩展,响应绑定设计. 275 | * [meituan](https://github.com/lookingstars/meituan) - 美团5.7iOS版(高仿),功能包括,团购首页,高德地图搜索附近美食并显示在地图上,上门服务,商家,友盟分享. 276 | * [JFMeiTuan](https://github.com/tubie/JFMeiTuan) - 造美团应用界面构建的 iOS 应用, 第二个是 @tubiebutu 的 JFMeiTuan. 277 | * [SXNews](https://github.com/dsxNiubility/SXNews) - 模仿网易新闻做的新闻软件,完成了主导航页,新闻详情页,图片浏览页,评论页. 278 | * [Monkey](https://github.com/coderyi/Monkey) - GitHub开发者和仓库排名的开源App. 279 | * [Uther](https://github.com/callmewhy/Uther) - 跟蠢萌的外星人聊天,还能帮你记事”.[itunes下载](https://itunes.apple.com/cn/app/uther/id1024104920). 280 | * [高仿斗鱼TV](http://code.cocoachina.com/view/128246) - 高仿斗鱼TV,点击头部滚动视图可以播放视频. 281 | * [Coding-iPad](https://github.com/Coding/Coding-iPad) - @Coding的官方 iPad 客户端. 282 | * [wire-ios](https://github.com/wireapp/wire-ios) - 私密消息应用wire源码. 283 | * [react-native-gitfeed](https://github.com/xiekw2010/react-native-gitfeed) - 目前最实用简洁的github客户端了. 284 | * [phphub-ios](https://github.com/Aufree/phphub-ios) - PHPHub的iOS客户端,同时兼容iPhone和iPad. 285 | * [LeagueofLegends](https://github.com/HarrisHan/LeagueofLegends) - 一个关于英雄联盟的完整iOS开源项目,接口均来自多玩,腾讯各大游戏平台. 286 | * [BTApp](https://github.com/Ryan0520/BTApp) - BTApp 仿半糖 iOS App 的 Demo 应用. 287 | * [iOS完整App资源收集](https://github.com/CoderJackyHuang/MDArtileFiles) - 很多开源的完整的App--标哥的技术博客. 288 | * [XCFApp-1](https://github.com/callmejoejoe/XCFApp) - 高仿下厨房App,Objective-C,Xcode7.2,数据通过Charles抓的,有接口也有本地数据。说明:关于代码被清空,会用git的你肯定明白,[教程](http://www.jianshu.com/p/a8f619a2c622/). 289 | * [YoCelsius](https://github.com/YouXianMing/YoCelsius) - 已经上线的一款天气预报的应用,几乎所有的交互动画效果,想学习动画的开发人员可以作为参考. 290 | * [DayDayNews](https://github.com/gaoyuhang/DayDayNews) - 仿网易新闻客户端,实现新闻浏览,视频播放,仿搜狐视频、百思不得姐等当前主流视频播放器,实现流媒体播放,自动监听屏幕转动,实现横屏播放 , 抓取百度图片,瀑布流显示,夜间模式,环信即时通讯. 291 | * [ECMobile_iOS](https://github.com/GeekZooStudio/ECMobile_iOS) - 基于ECShop的手机商城客户端(iOS、Android、Php一体). 292 | * [TKeyboard](https://github.com/music4kid/TKeyboard) - 这款应用名为:TKeyboard。有一个 Mac 端和一个 iOS 端 App。简单来说,可以通过蓝牙,使用 Mac 的键盘输入内容到 iPhone 设备中. 293 | * [BDJProjectExample](https://github.com/yizzuide/BDJProjectExample) - 基于VIPER设计模式,以XFLegoVIPER框架为引擎的仿《百思不得姐》项目. 294 | * [UberSignature](https://github.com/uber/UberSignature) - 一个通过触摸前面的App. 295 | * [HiPDA](https://github.com/leizh007/HiPDA) - HiPDA的非官方客户端(iOS版). 296 | * [yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo) - a demo developed using weex/weex高仿网易严选App. 297 | * [MeiTuan](https://github.com/huanxsd/MeiTuan) - 高仿美团客户端 React-Native版,支持iOS、Android. 298 | * [OneM](https://github.com/guangqiang-liu/OneM) - OneM是一款纯ReactNative打造的集杂志浏览、音乐播放、视频播放于一体的综合性App,并且支持iOS和Android双平台. 299 | * [ZMBCY-iOS](https://github.com/Brances/ZMBCY-iOS) - 高仿二次元网易GACHA,所有接口均通过Charles抓取而来,里面有可单独抽离出来的卡片轮播. 300 | * [Hotels](https://github.com/FantasticLBP/Hotels) - 酒店预订App. 301 | 302 | #### 框架@ 303 | 304 | * [nimbus](https://github.com/jverkoey/nimbus) - Nimbus是一个开源的iOS框架,比起Three20,Nimbus的文档更为全面、丰富,能够实现很多非常炫的界面特效. 305 | * [ReactiveCocoa](https://github.com/ReactiveCocoa/ReactiveCocoa) - ReactiveCocoa受函数响应式编程激发。不同于使用可变的变量替换和就地修改,RAC提供Signals来捕获当前值和将来值( [使用介绍](http://yulingtianxia.com/blog/2014/07/29/reactivecocoa/) ),[不错的例子](http://iiiyu.com/2014/12/26/learning-ios-notes-thirty-six/),入门好教程:[ReactiveCocoa入门教程:第一部分 ](http://www.cocoachina.com/ios/20150123/10994.html)。[Reactive Cocoa 3.0 在 MVVM 中的应用](http://ios.jobbole.com/82232/) ,[小码哥:快速让你上手ReactiveCocoa之基础篇](http://www.jianshu.com/p/87ef6720a096)。 306 | * [react-native-maps](https://github.com/airbnb/react-native-maps) - React Native Mapview component for iOS + Android. 307 | * [react-native-svg](https://github.com/react-native-community/react-native-svg) - SVG library for React Native. react-native-svg is built to provide a SVG interface to react native on both iOS and Android. 308 | * [react-native-code-push](https://github.com/Microsoft/react-native-code-push) - React Native module for CodePush. 309 | * [CYLTabBarController](https://github.com/ChenYilong/CYLTabBarController) - 低耦合集成TabBarController,最低只需传两个数组即可完成主流App框架搭建. 310 | * [samurai-native](https://github.com/hackers-painters/samurai-native) - 是一个基于浏览器内核通过HTML+CSS 开发原生移动应用的iOS框架. 311 | * [HHRouter](https://github.com/Huohua/HHRouter) - 一言以蔽之,URL Router 即将 UIViewController 映射成 URL,从而支持通过 URL 进行界面跳转。是的,就和 Web 一样。当然,这并不是 Web Developer 转职为 iOS Developer 后所做的无聊玩具。URL Router 有着许多切实的好处. 312 | * [AsyncDisplayKit](https://github.com/facebook/AsyncDisplayKit) - 异步界面渲染库,为极限优化View效果而生(同时提供 UIView bridge 接口). 313 | * [XFLegoVIPER](https://github.com/yizzuide/XFLegoVIPER) - A lightweight framework base on VIPER architecture for iOS, to build robust and maintained large scale project. 314 | * [publishImageAndVideoAnsRecord](https://github.com/DayCrazy/publishImageAndVideoAnsRecord) - 发布视频、语言、照片模块集合,其中包括带placeHolder的TextView、录制小视频、录制音频、选择照片或拍照. 315 | * [XBSettingController](https://github.com/changjianfeishui/XBSettingController) - 快速搭建类个人中心及应用设置界面. 316 | * [EVNEstorePlatform](https://github.com/zonghongyan/EVNEstorePlatform) - App项目框架 [简书解析](http://www.jianshu.com/p/89e25c288d76?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io) 317 | * [QMUI_iOS](https://github.com/QMUI/QMUI_iOS) - QMUI iOS——致力于提高项目 UI 开发效率的解决方案. 318 | * [UniversalProject](https://github.com/XuYang8026/UniversalProject) - 基于MVC架构的iOS轻量级框架,封装了基类、基于猿题库YTKNetwork的网络服务、工具库,NavigationController转场动画/瀑布流/粒子动画/小demo,已适配iOS11 & iPhone X. 319 | * [coderZsq.project.oc](https://github.com/coderZsq/coderZsq.project.oc) - A lightweight and efficient application development tool set for iOS, and accelerating the developing speed. 320 | * [AppManager](https://github.com/nanchen2251/AppManager) - 🔥 An elegant exit application and restart mechanism management. 321 | * [MACProject](https://github.com/azheng51714/MACProject) - 这是一个用 Objective-C 写的 iOS 轻量级框架,旨在快速构建 iOS App. 322 | 323 | #### React@ 324 | 325 | * [react-native](https://github.com/facebook/react-native) - A framework for building native apps with React. 326 | * [weex](https://github.com/alibaba/weex) - A framework for building Mobile cross-platform UI. 327 | * [LoginWithReactiveCocoa](https://github.com/CrazySurfBoy/LoginWithReactiveCocoa) - ReactiveCocoa - 登录交互效果的实现。 328 | * [BeeFramework](https://github.com/gavinkwoe/BeeFramework) - 与ReactiveCocoa类似,[BeeFramework用户指南 v1.0](http://www.lanrenios.com/tutorials/all/2012/1220/641.html)。 329 | * [Objective-Chain](https://github.com/Tricertops/Objective-Chain) - Objective-Chain是一个面向对象的响应式框架,作者表示该框架吸收了 ReactiveCocoa 的思想,并且想做得更面向对象一些。 330 | * [MVVMFramework](https://github.com/lovemo/MVVMFramework) - (OC版)总结整理下一个快速开发框架,分离控制器中创建tableView和collectionView的代码,已加入cell自适应高度,降低代码耦合,提高开发效率。 331 | * [react-native-config](https://github.com/luggit/react-native-config) - Bring some 12 factor love to your mobile apps. 332 | * [react-native-syan-image-picker](https://github.com/syanbo/react-native-syan-image-picker) - React-Native 多图片选择 支持裁剪 压缩. 333 | * [ReactNative的理解与思考,三端同一套代码的实践](http://www.jianshu.com/p/1144469bf81f?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io). 334 | * [RNStudyNotes](https://github.com/crazycodeboy/RNStudyNotes) - React Native 研究与实践. 335 | 336 | #### framework@ 337 | 338 | * [ReSwift](https://github.com/ReSwift/ReSwift) - ReSwift 是一个轻量级的框架,能够帮助你很轻松的去构建一个 Redux 架构的app. 339 | * [Small](https://github.com/wequick/Small) - A small framework to split app into small parts. 340 | * [Lotusoot](https://github.com/Vegetarians/Lotusoot) - 灵活的 Swift 组件通信和路由工具. 341 | * [Aspects](https://github.com/steipete/Aspects) - 个简洁高效的用于使iOS支持AOP面向切面编程的库.它可以帮助你在不改变一个类或类实例的代码的前提下,有效更改类的行为. 342 | * [Form](https://github.com/hyperoslo/Form) - JSON 驱动的 Form表单系统,复杂的表单填写类 App 极其需要(比如淘宝呢!). 343 | 344 | #### 混合开发@ 345 | 346 | * [rexxar-ios](https://github.com/douban/rexxar-ios) - 豆瓣推的混合开发库 Mobile Hybrid Framework Rexxar iOS Container. 347 | 348 | #### 安全@ 349 | 350 | * [Objective-C-RSA](https://github.com/ideawu/Objective-C-RSA) - Doing RSA encryption and decryption with Objective-C on iOS. 351 | * [NSDictionary-NilSafe](https://github.com/allenhsu/NSDictionary-NilSafe) - How we made NSDictionary nil safe at Glow. 352 | * [Myriam](https://github.com/GeoSn0w/Myriam) - A vulnerable iOS App with Security Challenges for the Security Researcher inside you. 353 | * [Hopper App](https://www.hopperapp.com/) - Hopper Disassembler是一款逆向工程工具,iOS爱好者可以使用它来进行反汇编,反编译和调试应用程序。此工具也可用于修改和重组代码。你只需在你的macOS或Linux系统上启动该应用,然后将其指向你需要破解的二进制文件即可。总的来说Hopper是一款非常好用的逆向工程工具,对于热衷于iOS漏洞赏金的人而言,无疑它将成为一个首选. 354 | * [ios-class-guard](https://github.com/Polidea/ios-class-guard) - 一个用于混淆iOS的类名、方法名以及变量名的开源库--有人反映编译出来的app运行不了. 355 | * [《Protecting iOS Applications》](https://www.polidea.com/#!heartbeat/blog/Protecting_iOS_Applications) - 文章系统地介绍了如何保护iOS程序的代码安全,防止反汇编分析. 356 | * [fishhook](https://github.com/facebook/fishhook) - fishhook是Facebook开源的一个可以hook系统方法的工具. 357 | * [JMPasswordView](https://github.com/Juuman/JMPasswordView) - 简单实用的手势密码,效果可自行调控. 358 | * [仿密码锁-九宫格](http://code.cocoachina.com/detail/298556/%E4%BB%BF%E5%AF%86%E7%A0%81%E9%94%81-%E4%B9%9D%E5%AE%AB%E6%A0%BC/) - 仿密码锁-九宫格,主要是使用UIButton 手势事件 UIBezierPath画图,解锁失败弹出“密码错误”. 359 | * [Valet](https://github.com/square/Valet) - 代客可以让你安全地存储在iOS和OS X的钥匙串数据,而无需了解的钥匙扣如何工作的事情. 360 | * [CoreLock](https://github.com/CharlinFeng/CoreLock) - 本框架是高仿支付宝,并集成了所有功能,并非一个简单的解锁界面展示。个人制作用时1周多,打造解锁终结者框架. 361 | * [LikeAlipayLockCodeView](https://github.com/crazypoo/LikeAlipayLockCodeView) - 高仿支付宝手势解锁(超级版). 362 | * [Smile-Lock.swfit](https://github.com/liu044100/Smile-Lock) - 一个类似于iOS的解锁界面. 363 | * [PCGestureUnlock](https://github.com/iosdeveloperpanc/PCGestureUnlock) - 目前最全面最高仿支付宝的手势解锁,而且提供方法进行参数修改,能解决项目开发中所有手势解锁的开发. 364 | * [ICPayPassWordDemo](https://github.com/icoder20150719/ICPayPassWordDemo) - CPayPassWordDemo,一个模仿支付宝支付密码输入对话框小demo. 365 | * [RSAESCryptor](https://github.com/bigsan/RSAESCryptor) - 加密 RSA+AES Encryption/Decryption library for iOS. This library uses 2048-bit RSA and 256-bit key with 128-bit block size AES for encryption/decryption. 366 | * [TouchID](https://github.com/bringbird/TouchID) - 用法简单的TouchID验证框架:两行代码搞定. 367 | * [SFHFKeychainUtils] (https://github.com/ldandersen/scifihifi-iphone) - iOS中使用SFHFKeychainUtils保存用户密码,比如项目中需要保存用户密码,以实现自动登录的功能可以使用. 368 | * [AESCipher-iOS](https://github.com/WelkinXie/AESCipher-iOS) - AESCipher-iOS:用 Objective-C 实现的 AES 加密。与 [AESCipher-Java](https://github.com/WelkinXie/AESCipher-Java) 一并使用能达到 在iOS、Android、Java后台产生相同密文、正确解密成明文的目的。[AES加密 - iOS与Java的同步实现](http://www.jianshu.com/p/df828a57cb8f). 369 | * [ABPadLockScreen](https://github.com/abury/ABPadLockScreen) - 九宫格密码锁. 370 | 371 | #### 区块链@ 372 | 373 | * [awesome-blockchain](https://github.com/chaozh/awesome-blockchain) - 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料. 374 | 375 | #### 逆向@ 376 | 377 | * [app2dylib](https://github.com/tobefuturer/app2dylib) - A reverse engineering tool to convert iOS app to dylib. 378 | 379 | #### 网络@ 380 | #### 网络请求@ 381 | 382 | * [AFNetworking](https://github.com/AFNetworking/AFNetworking) - A delightful networking framework for iOS, OS X, watchOS, and tvOS. [iOS开发下载文件速度计算](http://www.superqq.com/blog/2015/01/29/ioskai-fa-xia-zai-wen-jian-su-du-ji-suan/) , [AFNetworking 3.0迁移指南](http://www.cocoachina.com/ios/20151022/13831.html) , [AFNetworking2.0源码解析<一>](http://www.cocoachina.com/ios/20140829/9480.html) 、[AFNetworking2.0源码解析<二>](http://www.cocoachina.com/ios/20140904/9523.html)、[AFNetworking源码解析<三>](http://www.cocoachina.com/ios/20140916/9632.html)、[AFNetworking源码解析<四>](http://www.cocoachina.com/ios/20141120/10265.html)。 383 | * [YTKNetwork](https://github.com/yuantiku/YTKNetwork) - 是基于 AFNetworking 封装的 iOS网络库,提供了更高层次的网络访问抽象。相比AFNetworking,YTKNetwork提供了以下更高级的功能:按时间或版本号缓存网络请求内容、检查返回 JSON 内容的合法性、文件的断点续传、批量的网络请求发送、filter和插件机制等,猿题库出品. 384 | * [RestKit](https://github.com/RestKit/RestKit) - RestKit是一款专为iOS设计的Objective-C框架,旨在与RESTful web服务的交互变得更简单快速。它基于强大的对象映射系统,并且结合了一个干净、简单的HTTP请求/响应API,大大减少了完成任务所需的代码量。 RestKit is a framework for consuming and modeling RESTful web resources on iOS and OS X 385 | * [Moya](https://github.com/Moya/Moya) - Network abstraction layer written in Swift. 386 | * [HYBNetworking](https://github.com/CoderJackyHuang/HYBNetworking) - 基于AFN封装的网络库,可以通用。[基于AFNetworking封装网络库说明](http://www.henishuo.com/base-on-afnetworking-wrapper/)目前已经提供了通用的GET/POST、上传、下载API等。 387 | * [LxFTPRequest](https://github.com/DeveloperLx/LxFTPRequest) - 支持获取FTP服务器资源列表,下载/上传文件,创建/销毁ftp服务器文件/目录,以及下载断点续传,下载/上传进度,自动判断地址格式合法性跟踪等功能!国人开发,QQ:349124555。 388 | * [ASIHTTPRequest](https://github.com/pokeb/asi-http-request) - Easy to use CFNetwork wrapper for HTTP requests, Objective-C, macOS and iPhone. 389 | * [MutableUploadDemo](https://github.com/HHuiHao/MutableUploadDemo) - 模拟需求:图文混编,要求用户选择图片后就上传,可选择多图,并行上传,用户确定提交后后台执行,必须全部图片上传完才能提交文字。 390 | * [WTRequestCenter](https://github.com/swtlovewtt/WTRequestCenter) - 方便缓存的请求库,提供了方便的HTTP请求方法,传入请求url和参数,返回成功和失败的回调。 UIKit扩展提供了许多不错的方法,快速缓存图片,图片查看,缩放功能, 颜色创建,设备UUID,网页缓存,数据缓存等功能。 无需任何import和配置,目前实现了基础需求。 391 | * [MMWormhole](https://github.com/mutualmobile/MMWormhole) - Message passing between iOS apps and extensions 2个iOS设备之间通信。 392 | * [STNetTaskQueue](https://github.com/kevin0571/STNetTaskQueue) - STNetTaskQueue Objective-C 可扩展网络请求管理库。 393 | * [MZDownloadManager](https://github.com/mzeeshanid/MZDownloadManager) - 下载管理。 394 | * [DVR](https://github.com/venmo/DVR) - 针对网络请求的测试框架,超实用的工具。且支持 iOS, OSX, watchOS 全平台。 395 | * [HFDownLoad](https://github.com/hongfenglt/HFDownLoad) - iOS开发网络篇之文件下载、大文件下载、断点下载:NSData方式、NSURLConnection方式、NSURLSession下载方式 [下载方式具体的思路、区别见Blog](http://blog.csdn.net/hongfengkt/article/details/48290561) 。 396 | * [PPNetworkHelper](https://github.com/jkpang/PPNetworkHelper) - AFN3.x与YYCache的二次封装,一句话搞定网络请求与缓存,和FMDB说拜拜. 397 | * [WANetworkRouting](https://github.com/Wasappli/WANetworkRouting) - An iOS library to route API paths to objects on client side with request, mapping, routing and auth layers 398 | * [Overcoat](https://github.com/Overcoat/Overcoat) - Small but powerful library that makes creating REST clients simple and fun. 399 | * [ROADFramework](https://github.com/epam/road-ios-framework) - Attributed-oriented approach for interacting with web services. The framework has built-in json and xml serialization for requests and responses and can be easily extensible. 400 | * [TWRDownloadManager](https://github.com/chasseurmic/TWRDownloadManager) - A modern download manager based on NSURLSession to deal with asynchronous downloading, management and persistence of multiple files. 401 | * [HappyDns](https://github.com/qiniu/happy-dns-objc) - A Dns library, support custom dns server, dnspod httpdns. Only support A record. 402 | * [Bridge](https://github.com/BridgeNetworking/Bridge) - A simple extensible typed networking library. Intercept and process/alter requests and responses easily. :large_orange_diamond: 403 | * [EVCloudKitDao](https://github.com/evermeer/EVCloudKitDao) - Simplified access to Apple's CloudKit :large_orange_diamond: 404 | * [Siesta](https://bustoutsolutions.github.io/siesta/) - Elegant abstraction for RESTful resources that untangles stateful messes. An alternative to callback- and delegate-based networking. :large_orange_diamond: 405 | * [OctopusKit](https://github.com/icoco/OctopusKit) - A simplicity but graceful solution for invoke RESTful web service APIs. 406 | * [EVURLCache](https://github.com/evermeer/EVURLCache) - a NSURLCache subclass for handling all web requests that use NSURLRequest :large_orange_diamond: 407 | * [ResponseDetective](https://github.com/netguru/ResponseDetective) - Sherlock Holmes of the networking layer. :large_orange_diamond: 408 | * [agent](https://github.com/hallas/agent) - Minimalistic Swift HTTP request agent for iOS and macOS :large_orange_diamond: 409 | * [Reach](https://github.com/Isuru-Nanayakkara/Reach) - A simple class to check for internet connection availability in Swift. :large_orange_diamond:、 410 | * [SwiftHTTP](https://github.com/daltoniam/SwiftHTTP) - Thin wrapper around NSURLSession in swift. Simplifies HTTP requests. :large_orange_diamond: 411 | * [NetKit](https://github.com/azizuysal/NetKit) - A Concise HTTP Framework in Swift. :large_orange_diamond: 412 | * [MonkeyKing](https://github.com/nixzhu/MonkeyKing) - MonkeyKing helps you post messages to Chinese Social Networks. :large_orange_diamond: 413 | * [NetworkKit](https://github.com/imex94/NetworkKit) - Lightweight Networking and Parsing framework made for iOS, Mac, WatchOS and tvOS. :large_orange_diamond: 414 | * [APIKit](https://github.com/ishkawa/APIKit) - A networking library for building type safe web API client in Swift. :large_orange_diamond: 415 | * [SPTDataLoader](https://github.com/spotify/SPTDataLoader) - The HTTP library used by the Spotify iOS client. 416 | * [SWNetworking](https://github.com/skywite/SWNetworking) - Powerful high-level iOS, macOS and tvOS networking library. 417 | * [SOAPEngine](https://github.com/priore/SOAPEngine) - This generic SOAP client allows you to access web services using a your iOS app, macOS app and AppleTV app. 418 | * [Swish](https://github.com/thoughtbot/Swish) - Nothing but Net(working) :large_orange_diamond: 419 | * [Malibu](https://github.com/hyperoslo/Malibu) - :surfer: Malibu is a networking library built on promises :large_orange_diamond: 420 | * [UnboxedAlamofire](https://github.com/serejahh/UnboxedAlamofire) - Alamofire + Unbox: the easiest way to download and decode JSON into swift objects. :large_orange_diamond: 421 | * [MMLanScan](https://github.com/mavris/MMLanScan) - An iOS LAN Network Scanner library 422 | * [Domainer](https://github.com/FelixLinBH/Domainer) - Manage multi-domain url auto mapping ip address table 423 | * [Restofire](https://github.com/Restofire/Restofire) - Restofire is a protocol oriented network abstraction layer in swift that is built on top of Alamofire to use services in a declartive way :large_orange_diamond: 424 | * [AFNetworking+RetryPolicy](https://github.com/kubatruhlar/AFNetworking-RetryPolicy) - An objective-c category that adds the ability to set the retry logic for requests made with AFNetworking. 425 | * [Nikka](https://github.com/JustaLab/Nikka) - A super simple Networking wrapper that supports many JSON libraries, Futures and Rx :large_orange_diamond: ⌚ 426 | * [XMNetworking](https://github.com/kangzubin/XMNetworking) - A lightweight but powerful network library with simplified and expressive syntax based on AFNetworking. 427 | * [Merhaba](https://github.com/abdullahselek/Merhaba) - Bonjour networking for discovery and connection between iOS, macOS and tvOS devices. 428 | * [DBNetworkStack](https://github.com/dbsystel/DBNetworkStack) - Resource-oritented networking which is typesafe, extendable, composeable and makes testing a lot easier. :large_orange_diamond: 429 | * [EFInternetIndicator](https://github.com/ezefranca/EFInternetIndicator) - A little swift Internet error status indicator using ReachabilitySwift. :large_orange_diamond: 430 | * [AFNetworking-Synchronous](https://github.com/paulmelnikow/AFNetworking-Synchronous) - Synchronous requests for AFNetworking 1.x, 2.x, and 3.x. 431 | * [QwikHttp](https://github.com/logansease/QwikHttp) - a robust, yet lightweight and simple to use HTTP networking library designed for RESTful APIs. 🔶 432 | * [NetClient](https://github.com/intelygenz/NetClient-iOS) - Versatile HTTP networking library written in Swift 3. :large_orange_diamond: 433 | * [Reactor](https://github.com/MailOnline/Reactor) - Powering your RAC architecture :large_orange_diamond: 434 | * [OHHTTPStubs](https://github.com/AliSoftware/OHHTTPStubs) - 轻松存网络的要求!测试你的应用程序使用假网络数据和定制的响应时间,响应代码和头部. 435 | 436 | #### socket@ 437 | 438 | * [CocoaAsyncSocket](https://github.com/robbiehanson/CocoaAsyncSocket) - 无疑是目前封装得最完善的Socket库了:支持异步TCP/UDP,支持GCD,Objective-C接口封装[使用教程](http://www.superqq.com/blog/2015/04/03/ioskai-fa-zhi-asyncsocketshi-yong-jiao-cheng/). 439 | * [SocketRocket](https://github.com/facebook/SocketRocket) - 一个非常不错的 Objective-C 的Socket库. 440 | * [AsyncSocket](https://github.com/roustem/AsyncSocket) - Asynchronous socket networking library for Mac and iOS. 441 | * [Socket通信](http://code.cocoachina.com/view/128711) - 通过AsyncSocket封装的Socket通讯方法,简单实用,通俗易懂,初学者不能错过. 442 | * [GCDAsyncSocket](https://github.com/eugenehp/GCDAsyncSocket) - GCDAsyncSocket , [不错的Demo](https://github.com/smalltask/TestTcpConnection). 443 | 444 | #### 网络下载@ 445 | 446 | * [WHCNetWorkKit](https://github.com/netyouli/WHCNetWorkKit) - WHCNetWorkKit 是http网络请求开源库(支持GET/POST 文件上传 后台文件下载 UIButton UIImageView 控件设置网络图片 网络数据工具json/xml 转模型类对象网络状态监听). 447 | * [HSDownloadManager](https://github.com/HHuiHao/HSDownloadManager) - 下载音乐、视频、图片各种资源,支持多任务、断点下载. 448 | 449 | #### IM@ 450 | 451 | * [JSQMessagesViewController](https://github.com/jessesquires/JSQMessagesViewController) - 非常👍👍👍 的聊天界面框架. 452 | * [XMPPFramework](https://github.com/robbiehanson/XMPPFramework) - XMPPFramework openfire聊天. 453 | * [MessageDisplayKit](https://github.com/xhzengAIB/MessageDisplayKit) - 仿微信聊天,参考JSQMessagesViewController. 454 | * [SXTheQQ](https://github.com/dsxNiubility/SXTheQQ) - 用xmppFramework框架编写QQ程序,主要为了练习通讯的一些原理,界面比较渣 必须要先在本地配置好环境才可以运行。 455 | * [环信](http://www.easemob.com/) - 给开发者更稳定IM云功能。8200万用户考验,好用!(暂无及时语音、视频通话). 456 | * [融云](http://www.rongcloud.cn/) - 即时通讯云服务提供商。(暂无及时语音、视频通话). 457 | * [容联云通讯](http://www.yuntongxun.com) - 提供基于互联网通话,视频会议,呼叫中心/IVR,IM等通讯服务. 458 | * [ChatSecure-iOS](https://github.com/ChatSecure/ChatSecure-iOS) - 基于XMPP的iphone、android加密式聊天软件, [chatsecure官网](https://chatsecure.org/) 。 [iOS代码1](https://github.com/ChatSecure/ChatSecure-iOS),[iOS代码2](https://github.com/ChatSecure/ChatSecure-iOS), [iOS中文版](http://www.cocoachina.com/bbs/read.php?tid=153156). 459 | * [chatsecure](https://github.com/ChatSecure/ChatSecure-iOS) - 基于XMPP的iphone、android加密式聊天软件, [chatsecure官网](https://chatsecure.org/) 。 [iOS代码1](https://github.com/ChatSecure/ChatSecure-iOS),[iOS代码2](https://github.com/ChatSecure/ChatSecure-iOS), [iOS中文版](http://www.cocoachina.com/bbs/read.php?tid=153156). 460 | * [SunFlower](https://github.com/HanYaZhou1990/-SunFlower) - 环信聊天demo,比较多功能. 461 | * [BlueTalk蓝牙聊天](http://code4app.com/ios/BlueTalk%E8%93%9D%E7%89%99%E8%81%8A%E5%A4%A9-%E6%89%8B%E6%9C%BA%E4%B9%8B%E9%97%B4/552b8190933bf0291e8b4748) - 以MultipeerConnectivity为基础, 实现了简单的蓝牙聊天. 462 | * [网易云信 iOS UI 组件](https://github.com/netease-im/NIM_iOS_UIKit) - 云信 UI 组件,全称 Netease Instant Message Kit,简称 NIMKit,是一款开源的聊天组件,并支持二次开发。开发者只需要稍作配置就可以打造出属于自己的聊天界面,而通过一些自定义的设置,也可以轻松添加业务相关的功能,如阅后即焚,红包,点赞等功能。NIMKit 底层依赖 NIMSDK,是一款由网易开发的 IM SDK,通过它可以轻松快速在你的 App 中集成 IM 功能. 463 | * [TeamTalk](https://github.com/meili/TeamTalk) - TeamTalk is a solution for enterprise IM. 464 | * [QQ界面](https://github.com/weida-studio/QQ) 465 | * [RTCChatUI](https://github.com/Haley-Wong/RTCChatUI) - 仿QQ音视频通话效果. 466 | 467 | #### 网络测试@ 468 | 469 | * [Reachability](https://github.com/tonymillion/Reachability) - 苹果提供过一个Reachability类,用于检测网络状态。但是该类由于年代久远,并不支持ARC。该项目旨在提供一个苹果的Reachability类的替代品,支持ARC和block的使用方式。[iOS网络监测如何区分2、3、4G](http://www.jianshu.com/p/efcfa3c87306) 470 | * [SimpleCarrier](https://github.com/crazypoo/SimpleCarrier) - 简单的运营商信息获取. 471 | * [NetworkEye](https://github.com/coderyi/NetworkEye) - 一个网络调试库,可以监控App内HTTP请求并显示请求相关的详细信息,方便App开发的网络调试。 472 | * [RealReachability](https://github.com/dustturtle/RealReachability) - [iOS下的实际网络连接状态检测](http://www.cocoachina.com/ios/20160224/15407.html),解决“如何判断设备是否真正连上互联网?而不是只有网络连接”的问题。 473 | * [LDNetDiagnoService_IOS](https://github.com/Lede-Inc/LDNetDiagnoService_IOS) IOS平台利用ping和traceroute的原理,对指定域名(通常为后台API的提供域名)进行网络诊断,并收集诊断日志. 474 | * [Netfox](https://github.com/kasketis/netfox) - A lightweight, one line setup, iOS / macOS network debugging library! :large_orange_diamond: 475 | 476 | #### WebView与WKWebView@ 477 | 478 | * [WebViewJavascriptBridge](https://github.com/marcuswestin/WebViewJavascriptBridge) - 是一个连接javascript和iOS Native交互的开源框架。使用它可以在UIWebview中响应事件并执行Native方法,也可以使用Native方法调用javascript方法, 正如其名,它好像已做桥梁连接了两端. 479 | * [MGTemplateEngine](https://github.com/mattgemmell/MGTemplateEngine) - MGTemplateEngine比较象 PHP 中的 Smarty、FreeMarker 和 Django的模版引擎,是一个轻量级的引擎,简单好用。只要设置很多不同的HMTL模版,就能轻松的实现一个View多种内容格式的显示,对于不熟悉HTML或者减轻 工作量而言,把这些工作让设计分担一下还是很好的,也比较容易实现设计想要的效果. 480 | * [GTMNSString-HTML](https://github.com/siriusdely/GTMNSString-HTML) - 谷歌开源的用于过滤HTML标签. 481 | * [D3Generator](https://github.com/mozhenhau/D3Generator/) - D3Generator根据dict字典生成对象。适用webview和push推送时,根据后台传回字典实现动态跳转.[实现说明](http://mozhenhau.com/2016/02/07/D3Generator实现万能跳转界面,UIWebview与js随意交互/). 482 | * [GRMustache](https://github.com/groue/GRMustache) - 一个类似templateEngine的html渲染工具,可以更加有效的帮助大家完成数据生成HTML的过程. 483 | * [iOS-WebView-JavaScript](https://github.com/shaojiankui/iOS-WebView-JavaScript) - iOS UIWebView,WKWebView 与 JavaScript的深度交互. 484 | * [WKWebView](https://github.com/XFIOSXiaoFeng/WKWebView) - OC版WKWebView 支持POST请求 加载本地页面 直接加载网页 JS交互 集成支付宝/微信URL支付功能 仿微信返回按钮. 485 | * [BAWKWebView](https://github.com/BAHome/BAWKWebView) - 用分类封装 WKWebView,一行代码搞定 request、URL、URLString、本地 HTML文件、HTMLString等请求,一个 block 搞定 title、progress、currentURL、当前网页的高度等等所需. 486 | * [WKWebView](https://github.com/Telerik-Verified-Plugins/WKWebView) - A drop-in replacement of UIWebView - useful until Apple release a bug-free WKWebView. 487 | * [Erik](https://github.com/phimage/Erik) - Erik is an headless browser based on WebKit. An headless browser allow to run functional tests, to access and manipulate webpages using javascript. :large_orange_diamond: 488 | * [URLPreview](https://github.com/itsmeichigo/URLPreview) - An NSURL extension for showing preview info of webpages :large_orange_diamond: [e] 489 | * [AXWebViewController](https://github.com/devedbox/AXWebViewController) - AXWebViewController is a webViewController to browse web content inside applications. 490 | * [LYWebviewController](https://github.com/halohily/LYWebviewController) - 基于UIWebview-简书文章阅读页面的模仿demo. 491 | * [WKWebViewH5ObjCDemo](https://github.com/CoderJackyHuang/WKWebViewH5ObjCDemo) - 学习如何使用OC实现WKWebView与H5交互,并学习其API使用. 492 | * [PPHTMLImagePreviewDemo](https://github.com/smallmuou/PPHTMLImagePreviewDemo) - 该Repo用于演示APP中点击HTML的图片来预览图片的功能. 493 | 494 | #### 网络解析@ 495 | 496 | * [ParseSourceCodeStudy](https://github.com/ChenYilong/ParseSourceCodeStudy) - Facebook开源的Parse源码分析【系列】. 497 | 498 | #### JSON@ 499 | 500 | * [MJExtension](https://github.com/CoderMJLee/MJExtension) - A fast, convenient and nonintrusive conversion between JSON and model. 501 | * [YYModel](https://github.com/ibireme/YYModel) - High performance model framework for iOS/OSX. 502 | * [jsonmodel](https://github.com/jsonmodel/jsonmodel) - Magical Data Modeling Framework for JSON - allows rapid creation of smart data models. You can use it in your iOS, macOS, watchOS and tvOS apps. 503 | * [JSONKit](https://github.com/johnezang/JSONKit) - JSONKit库是非常简单易用而且效率又比较高的,重要的JSONKit适用于ios 5.0以下的版本,使用JSONKit库来解析json文件,只需要下载JSONKit.h 和JSONKit.m添加到工程中;然后加入libz.dylib即可. 504 | * [JSONModel](https://github.com/icanzilb/JSONModel) - 解析服务器返回的Json数据的库,[JSONModel源码解析一](http://www.jianshu.com/p/3d795ea37835). 505 | * [Mantle](https://github.com/Mantle/Mantle) - Mantle主要用来将JSON数据模型化为OC对象, 大系统中使用。[为什么选择Mantle](http://blog.csdn.net/itianyi/article/details/40789273). 506 | * [RFJModel](https://github.com/refusebt/RFJModel) - RFJModel是一个IOS类库,可以将JSON字典自动装填到OBJC对象. 507 | * [XMLDictionary](https://github.com/nicklockwood/XMLDictionary) - ios与mac os平台下xml与NSDictionary相互转化开源类库. 508 | * [DDModel](https://github.com/openboy2012/DDModel) - a HTTP-JSON/XML-ORM-Persistent Object Kit. 509 | * [TouchJSON](https://github.com/TouchCode/TouchJSON) - JSon解析库(早已停止更新). 510 | * [JSON-Framework](https://github.com/stig/json-framework) - JSON(JavaScript对象符号)是一种轻量的数据交换格式,易于读写人类和计算机一样。该框架实现了用在Objective-C严格的JSON解析器和编码器. 511 | * [Groot](https://github.com/gonzalezreal/Groot) - From JSON to Core Data and back. 512 | * [KZPropertyMapper](https://github.com/krzysztofzablocki/KZPropertyMapper) - 可以帮助你在对象与Array、Dict数据间进行转换,尤其适用于将json对象转换成objective-c中的实体对象。作者还写了一篇文章[stop-writing-data-parsing-code-in-your-apps](http://merowing.info/2013/07/stop-writing-data-parsing-code-in-your-apps/)介绍它的使用. 513 | * [FastEasyMapping](https://github.com/Yalantis/FastEasyMapping) - 一个快速对json进行序列化和反序列化的工具. 514 | * [OCMapper](https://github.com/aryaxt/OCMapper) - Objective-C & Swift library to easily map NSDictionary to model objects, works perfectly with Alamofire. ObjectMapper works similar to GSON. 515 | * [Cereal](https://github.com/Weebly/Cereal) - 对象序列化三方库 Swift object serialization. 516 | * [SwiftyJSONAccelerator](https://github.com/insanoid/SwiftyJSONAccelerator) - json转model的三方库 Generate Swift model files from JSON using either SwiftyJSON or ObjectMapper. Supports NSCoding and provides method for JSON string representation of the model. 517 | * [Tyro](htt ps://github.com/typelift/Tyro) - Functional JSON parsing and encoding :large_orange_diamond: 518 | * [Unbox](https://github.com/JohnSundell/Unbox) - The easy to use Swift JSON decoder :large_orange_diamond: 519 | * [JSONJoy-Swift](https://github.com/daltoniam/JSONJoy-Swift) - Convert JSON to Swift objects. :large_orange_diamond: 520 | * [LazyObject](https://github.com/iwasrobbed/LazyObject) - Lazily deserialize JSON into strongly typed Swift objects :large_orange_diamond: 521 | * [Elevate](https://github.com/Nike-Inc/Elevate) - Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable. :large_orange_diamond: 522 | * [AlamofireObjectMapper](https://github.com/tristanhimmelman/AlamofireObjectMapper) - An Alamofire extension which converts JSON response data into swift objects using ObjectMapper :large_orange_diamond: 523 | * [WAMapping](https://github.com/Wasappli/WAMapping) - 一个将字典和iOS对象相互转化的库. 524 | 525 | #### XML&HTML@ 526 | 527 | * [Ji](https://github.com/honghaoz/Ji) - XML/HTML parser for Swift. :large_orange_diamond: 528 | * [Ono](https://github.com/mattt/Ono) - A sensible way to deal with XML & HTML for iOS & OS X. 529 | * [AlamofireXmlToObjects](https://github.com/evermeer/AlamofireXmlToObjects) - Fetch a XML feed and parse it into objects :large_orange_diamond: 530 | * [Fuzi](https://github.com/cezheng/Fuzi) - A fast & lightweight XML & HTML parser in Swift with XPath & CSS support :large_orange_diamond: 531 | * [Kanna](https://github.com/tid-kijyun/Kanna) - Kanna(鉋) is an XML/HTML parser for MacOSX/iOS. :large_orange_diamond: 532 | * [SwiftyXMLParer](https://github.com/yahoojapan/SwiftyXMLParser) - Simple XML Parser implemented in Swift :large_orange_diamond: 533 | * [HTMLKit](https://github.com/iabudiab/HTMLKit) - An Objective-C framework for your everyday HTML needs. 534 | * [SWXMLHash](https://github.com/drmohundro/SWXMLHash) - Simple XML parsing in Swift :large_orange_diamond: 535 | 536 | #### block@ 537 | 538 | * [adblockfast](https://github.com/rocketshipapps/adblockfast) - Adblock Fast is a new, faster ad blocker for iOS, Android, Chrome, and Opera. https://adblockfast.com/. 539 | 540 | #### 数据存储@ 541 | 542 | * [FMDB](https://github.com/ccgus/fmdb) - sqlite的工具. [多线程FMDatabaseQueue实例](https://github.com/tangqiaoboy/FmdbSample),[FMDB数据库的使用演示和封装工具类](https://github.com/liuchunlao/LVDatabaseDemo),[基于fmdb 的基本操作](http://code.cocoachina.com/view/128312) 通过 fmdb 进行的数据库的 基本操作(增删改查 )查找是使用 UISearchBar 和UISearchDisplayController 进行混合使用. 543 | * [GDataBase](https://github.com/GIKICoder/GDataBase) - 基于FMDB的ORM数据库存储解决方案. 面向模型和线程安全的API. 一句代码存储,读取.对存储模型无需继承BaseObject. 可自定义多主键,可使用sqlite关键字.可自定义序列化字段等.支持模型黑名单.支持数据库表存储value base64编/解码.对模型无侵入,只需遵守相关协议即可.极大方便项目中使用. 544 | * [realm-cocoa](https://github.com/realm/realm-cocoa) - 一个号称要代替Core Data & SQLite的用于移动端的数据库,非常不错👍👍 ,同时支持Swift. 545 | * [YapDatabase](https://github.com/yapstudios/YapDatabase) - YapDatabase is an extensible database for iOS & Mac. 546 | * [CoreModel](https://github.com/CharlinFeng/CoreModel) - Replace CoreData. 547 | * [WHC_ModelSqliteKit](https://github.com/netyouli/WHC_ModelSqliteKit) - 专业的数据库存储解决方案. 548 | * [JQFMDB](https://github.com/gaojunquan/JQFMDB) - FMDB的封装,操作简单,线程安全,扩展性强,直接操作model或dictionary. 549 | * [RealmObjectEditor](https://github.com/Ahmed-Ali/RealmObjectEditor) - Realm Object Editor is a visual editor where you can create your Realm entities, attributes and relationships inside a nice user interface. Once you finish, you can save your schema document for later use and you can export your entities in Swift, Objective-C and Java. 550 | * [sqlitebrowser](https://github.com/sqlitebrowser/sqlitebrowser) - Official home of the DB Browser for SQLite (DB4S) project. Previously known as "SQLite Database Browser" and "Database Browser for SQLite". Website at: http://sqlitebrowser.org. 551 | * [GXDatabaseUtils](https://github.com/Gerry1218/GXDatabaseUtils) - 在FMDB基础上的工具. 552 | * [MagicalRecord](https://github.com/magicalpanda/MagicalRecord) - CoreData第一库,MagicalRecord就像是给Core Data提供了一层外包装,隐藏掉所有不相关的东西。 其中事务管理及查询是其比较大的亮点,整套 API 功能完整。 553 | * [GKDatabase](https://github.com/ChrisCaixx/GKDatabase) - 基于SQLite3简单封装了下,实现了一行代码解决增删改查等常用的功能!并没有太过高深的知识,主要用了runtime和KVC:请看Demo~ 原理篇请看这里:[简书地址](http://www.jianshu.com/p/0e598147debc). 554 | * [CoreStore](https://github.com/AfryMask/AFBrushBoard) - Core Data 管理类库。 其中事务管理及查询是其比较大的亮点,整套 API 功能完整. 555 | * [mogenerator](http://rentzsch.github.io/mogenerator/) - mogenerator为你定义了的Core Data生成默认的数据类。与xCode不一样的是(xCode一个Entity只生成一个NSManagedObject的子类),mogenerator会为每一个Entity生成两个类。一个为机器准备,一个为人类准备。为机器准备的类一直去匹配data model。为人类准备的类就给你轻松愉快的去修改和保存. 556 | * [Presentation](https://github.com/hyperoslo/Presentation) - 重量级好项目 Presentation,它可以方便你制作定制的动画式教程、Release Notes、个性化演讲稿等. 557 | * [SQLCipher](https://github.com/sqlcipher/sqlcipher) - SQLCipher使用256-bit AES加密,SQLCipher分为收费版本和免费版本。[官方教程](https://www.zetetic.net/sqlcipher/ios-tutorial/), [加密你的SQLite](http://foggry.com/blog/2014/05/19/jia-mi-ni-de-sqlite/) - 各种sqlite数据库加密介绍。 [SQLCipherDemo下载](http://download.csdn.net/detail/wzzvictory_tjsd/7379055) 。 558 | * [Couchbase Mobile](https://developer.couchbase.com/mobile/) - Couchbase document store for mobile with cloud sync. 559 | * [FCModel](https://github.com/marcoarment/FCModel) - An alternative to Core Data for people who like having direct SQL access. 560 | * [Zephyr](https://github.com/ArtSabintsev/Zephyr) - Effortlessly synchronize NSUserDefaults over iCloud. :large_orange_diamond: 561 | * [Storez](https://github.com/SwiftKitz/Storez) - Safe, statically-typed, store-agnostic key-value storage (with namespace support). :large_orange_diamond: 562 | * [ParseAlternatives](https://github.com/relatedcode/ParseAlternatives) - A collaborative list of Parse alternative backend service providers. 563 | * [TypedDefaults](https://github.com/tasanobu/TypedDefaults) - TypedDefaults is a utility library to type-safely use NSUserDefaults. :large_orange_diamond: 564 | * [realm-cocoa-converter](https://github.com/realm/realm-cocoa-converter) - A library that provides the ability to import/export Realm files from a variety of data container formats. :large_orange_diamond: 565 | * [RealmGeoQueries](https://github.com/mhergon/RealmGeoQueries) - RealmGeoQueries simplifies spatial queries with Realm Cocoa. In the absence of and official functions, this library provide the possibility to do proximity search. :large_orange_diamond:[e] 566 | * [ObjectiveRocks](https://github.com/iabudiab/ObjectiveRocks) - An Objective-C wrapper of Facebook's RocksDB - A Persistent Key-Value Store for Flash and RAM Storage. 567 | * [OHMySQL](https://github.com/oleghnidets/OHMySQL) - An Objective-C wrapper of MySQL C API. 568 | * [OneStore](https://github.com/muukii/OneStore) - A single value proxy for NSUserDefaults, with clean API. :large_orange_diamond: 569 | * [Nora](https://github.com/SD10/Nora) - Nora is a Firebase abstraction layer for working with FirebaseDatabase and FirebaseStorage. :large_orange_diamond: 570 | * [PersistentStorageSerializable](https://github.com/IvanRublev/PersistentStorageSerializable) - Swift library that makes easier to serialize the user's preferences (app's settings) with system User Defaults or Property List file on disk. :large_orange_diamond: 571 | * [WCDB](https://github.com/Tencent/wcdb) - WCDB is an efficient, complete, easy-to-use mobile database framework for iOS, macOS. 572 | * [StorageKit](https://github.com/StorageKit/StorageKit) - Your Data Storage Troubleshooter 🛠 . 573 | * [sequelpro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. 574 | 575 | #### 缓存处理@ 576 | 577 | * [YTKKeyValueStore](https://github.com/yuantiku/YTKKeyValueStore) - Key-Value存储工具类,[说明](http://tangqiaoboy.gitcafe.io/blog/2014/10/03/opensouce-a-key-value-storage-tool/)。 578 | * [JLKeychain](https://github.com/jl322137/JLKeychain) - 快捷使用keychain存储数据的类,使keychain像NSUserDefaults一样工作. 579 | * [UICKeyChainStore](https://github.com/kishikawakatsumi/UICKeyChainStore) - 封装keychain,使keychain像NSUserDefaults一样简单. 580 | * [sskeychain](https://github.com/soffes/sskeychain) - SSKeyChains对苹果安全框架API进行了简单封装,支持对存储在钥匙串中密码、账户进行访问,包括读取、删除和设置. 581 | * [KeychainAccess](https://github.com/kishikawakatsumi/KeychainAccess) - 管理Keychain接入的小助手. 582 | * [YYCache](https://github.com/ibireme/YYCache) - 高性能的 iOS 缓存框架. 583 | * [RuntimeDemo](https://github.com/CoderJackyHuang/RuntimeDemo) - runtime自动归档/解档,[源码分析](http://www.henishuo.com/runtime-archive-unarchive-automaticly/). 584 | 585 | #### 序列化@ 586 | 587 | * [FastCoding](https://github.com/nicklockwood/FastCoding) - 是用来替代OSX及iOS中默认的序列化实现。它结构简单(仅头文件和.m文件两个)、支持ARC,线程安全,速度较内置实现更快. 588 | 589 | #### coreData@ 590 | 591 | * [CWCoreData](https://github.com/jayway/CWCoreData) - Additions and utilities to make it concurrency easier with the Core Data framework. 592 | * [ObjectiveRecord](https://github.com/supermarin/ObjectiveRecord) - ActiveRecord for Objective-C. 593 | * [SSDataKit](https://github.com/soffes/SSDataKit) - Eliminate your Core Data boilerplate code. 594 | * [ios-queryable](https://github.com/martydill/ios-queryable) - ios-queryable is an implementation of IQueryable/IEnumerable for Core Data. 595 | * [Ensembles](https://github.com/drewmccormack/ensembles) - A synchronization framework for Core Data. 596 | * [SLRESTfulCoreData](https://github.com/OliverLetterer/SLRESTfulCoreData) - Objc naming conventions, autogenerated accessors at runtime, URL substitutions and intelligent attribute mapping. 597 | * [Mogenerator](https://github.com/rentzsch/mogenerator) - Automatic Core Data code generation. 598 | * [HardCoreData](https://github.com/Krivoblotsky/HardCoreData) - CoreData stack and controller that will never block UI thread. 599 | * [encrypted-core-data](https://github.com/project-imas/encrypted-core-data) - Core Data encrypted SQLite store using SQLCipher. 600 | * [MagicalRecord](https://github.com/magicalpanda/MagicalRecord) - Super Awesome Easy Fetching for Core Data. 601 | * [QueryKit](https://github.com/QueryKit/QueryKit) - A simple type-safe Core Data query language. :large_orange_diamond: 602 | * [CoreStore](https://github.com/JohnEstropia/CoreStore) - Powerful Core Data framework for Incremental Migrations, Fetching, Observering, etc. :large_orange_diamond: 603 | * [Core Data Query Interface](https://github.com/prosumma/CoreDataQueryInterface) - A type-safe, fluent query framework for Core Data. :large_orange_diamond: 604 | * [CoreDataDandy](https://github.com/fuzz-productions/CoreDataDandy) - A feature-light wrapper around Core Data that simplifies common database operations. :large_orange_diamond: 605 | * [CoreDataStack](https://github.com/bignerdranch/CoreDataStack) - The Big Nerd Ranch Core Data Stack :large_orange_diamond: 606 | * [Skopelos](https://github.com/albertodebortoli/Skopelos) - A minimalistic, thread safe, non-boilerplate and super easy to use version of Active Record on Core Data. Simply all you need for doing Core Data. Swift flavour. :large_orange_diamond: 607 | * [DataKernel](https://github.com/mrdekk/DataKernel) - Simple CoreData wrapper to ease operations. :large_orange_diamond: 608 | * [JustPersist](https://github.com/justeat/JustPersist) - JustPersist is the easiest and safest way to do persistence on iOS with Core Data support out of the box. 609 | * [PrediKit](https://github.com/KrakenDev/PrediKit) - An NSPredicate DSL for iOS, macOS, tvOS, & watchOS. Inspired by SnapKit and lovingly written in Swift. :large_orange_diamond: 610 | 611 | #### 动画@ 612 | 613 | * [lottie-ios](https://github.com/airbnb/lottie-ios) - 非常赞 一个用来渲染After Effects矢量动画的iOS库,同时支持iOS,Android与ReactNative的开发. 614 | * [AIAnimationDemo](https://github.com/aizexin/AIAnimationDemo) - 非常不错的一个各种动画Demo集合库👍👍 . 615 | * [pop](https://github.com/facebook/pop) - facebook出品的非常赞的动画引擎. 616 | * [AwesomeMenu](https://github.com/levey/AwesomeMenu) - 该项目主要是使用 CoreAnimation 还原了 Path menu 的动画效果 Path 2.0 menu using CoreAnimation :) https://github.com/levey/AwesomeMenu 617 | * [MMTweenAnimation](https://github.com/adad184/MMTweenAnimation) - 一个基于 POP 的扩展,提供了 10 种自定义的动效. 618 | * [XHLaunchAd](https://github.com/CoderZhuXH/XHLaunchAd) - XHLaunchAd开机启动广告解决方案-支持静态/动态图片广告,mp4视频广告,全屏/半屏广告、兼容iPhone/iPad. 619 | * [Core Animation笔记,基本的使用方法](http://www.starming.com/index.php?v=index&view=62) - Core Animation笔记,基本的使用方法:1.基本动画,2.多步动画,3.沿路径的动画,4.时间函数,5.动画组. 620 | * [awesome-ios-animation](https://github.com/sxyx2008/awesome-ios-animation) - [iOS Animation 主流炫酷动画框架(特效)收集整理](https://github.com/sxyx2008/DevArticles/issues/91) 收集整理了下iOS平台下比较主流炫酷的几款动画框架. 621 | * [AGGeometryKit](https://github.com/agens-no/AGGeometryKit) - 几何图形框架,把AGGeometryKit和POP结合起来使用,可实现非常棒的动态和动画. 622 | * [FleaMarket](https://github.com/SunLiner/FleaMarket) - "咸鱼"新特性-视频动画. 623 | * [JHChainableAnimations](https://github.com/jhurray/JHChainableAnimations) - 在应用中采用链式写出酷炫的动画效果, 使代码更加清晰易读,利用block实现的链式编程,同时支持Swift. 624 | * [awesome-animation](https://github.com/Animatious/awesome-animation) - 动效库. 625 | * [BCMagicTransition](https://github.com/boycechang/BCMagicTransition) - 一个动效框架,用于自定义UINavigationController的切换动画,效果类似 Keynote 软件中 Magic Move 切换。它可以用于任意两个UIViewController之间,只需指定两个VC中的相同元素即可. 626 | * [popping](https://github.com/schneiderandre/popping) - popping是一个POP使用实例工程. 627 | * [MMTweenAnimation](https://github.com/adad184/MMTweenAnimation) - facebook POP的自定义动画扩展(基于POPCustomAnimation) 提供10种函数式动画. 628 | * [ZQLRotateMenu](https://github.com/zangqilong198812/ZQLRotateMenu) - 这是一个旋转视图的选择器. 629 | * [CoolLoadAniamtion](https://github.com/zangqilong198812/CoolLoadAniamtion) - 一个简单但是效果不错的loading动画. 630 | * [Animations](https://github.com/YouXianMing/Animations) - The Animation Collection. 631 | * [JSDownloadView](https://github.com/Josin22/JSDownloadView) - 精巧顺滑的下载动画. 632 | * [SYAppStart](https://github.com/yushuyi/SYAppStart) - App启动插画的自定义过度. 633 | * [VJDeviceSpecificMedia](https://github.com/victorjiang/UIImage-VJDeviceSpecificMedia/) - [如何根据设备选择不同尺寸的图片](http://www.imooc.com/wenda/detail/249271) 可以通过设置不同尺寸设备的LaunchImage,来使得App适配这些设备,要是在不同不同尺寸设备上使用不同大小的图片,则需要在代码中一一判断,然后加载。 634 | * [RMParallax](https://github.com/michaelbabiy/RMParallax) - RMParallax是一个app启动页引导开源项目,除了细微的翻页视差效果,描述文本的过渡也非常美观(版本新特性、导航页、引导页). 635 | * [ADo_GuideView](https://github.com/Nododo/ADo_GuideView) - 转动的用户引导页(模仿网易bobo) 因为没有从app包里抓到@3x的图片,建议在iPhone5模拟器运行,保证效果~ (版本新特性、导航页、引导页). 636 | * [CoreNewFeatureVC](https://github.com/CharlinFeng/CoreNewFeatureVC) - 版本新特性(引导页),1.封装并简化了版本新特性启动视图!2.添加了版本的本地缓存功能,3.集成简单,使用方便,没有耦合度,4.支持block回调(版本新特性、导航页、引导页). 637 | * [MZGuidePages](https://github.com/MachelleZhang/MZGuidePages) - 自己写的通用导航页,可以直接引入工程使用,请参考案例(版本新特性、导航页、引导页). 638 | * [ABCIntroView](https://github.com/AdamBCo/ABCIntroView) - ABCIntroView是一个易于使用的入门类,让你到达主屏幕之前介绍你的应用程序(版本新特性、导航页、引导页). 639 | * [KYBezierBounceView](https://github.com/KittenYang/KYBezierBounceView) - 手势控制贝塞尔曲线,取消手势贝塞尔曲线会有反弹效果. 640 | * [cadisplaylinkanduibezierpath](http://kittenyang.com/cadisplaylinkanduibezierpath/) - CADisplayLink结合UIBezierPath的神奇妙用. 641 | * [KYCuteView](https://github.com/KittenYang/KYCuteView) - 实现类似QQ消息拖拽消失的交互+GameCenter的浮动小球效果,[分析](http://kittenyang.com/drawablebubble/). 642 | * [KYWaterWaveView](https://github.com/KittenYang/KYWaterWaveView) - 一个内置波浪动画的UIView,里面有鱼跳跃水溅起来的效果. 643 | * [KYPingTransition](https://github.com/KittenYang/KYPingTransition) - 实现圆圈放大放小的转场动画,可以根据自己的需要使用Paper中的弹性效果,有Material风格. 644 | * [KYNewtonCradleAnimiation](https://github.com/KittenYang/KYNewtonCradleAnimiation) - 牛顿摆动画. 645 | * [LayerPlayer](https://github.com/scotteg/LayerPlayer) - 一款全面展示核心动画 API 示例项目(上架应用)。包括 CALayer, CAScrollLayer, CATextLayer, AVPlayerLayer, CAGradientLayer, CAReplicatorLayer, CATiledLayer, CAShapeLayer, CAEAGLLayer, CATransformLayer, CAEmitterLayer 等使用的互动演示. 646 | * [KYShareMenu](https://github.com/KittenYang/KYShareMenu) - 带弹性动画的分享菜单. 647 | * [Context-Menu.iOS](https://github.com/Yalantis/Context-Menu.iOS) - 可以为app的菜单添加漂亮的动画内容,可自定义icon,并可根据自己的喜好设计单元格和布局. 648 | * [DeformationButton](https://github.com/LuciusLu/DeformationButton) - 一个简单的变换形状动画按钮. 649 | * [UnReadBubbleView](https://github.com/heroims/UnReadBubbleView) - UnReadBubbleView是一个能够拖拽并拉长的气泡视图。拖拽到一定的长度会消失,可以通过系数设置来控制拖拽的长度。气泡也支持多种属性设置。 650 | * [PPDragDropBadgeView](https://github.com/smallmuou/PPDragDropBadgeView) - 实现了类似于QQ 5.0 水滴拖拽效果. 支持iOS 5.0+ ARC,气泡能够带有数字标识,同时支持消失block方法。消失时还带有消失效果动画。 651 | * [GiftCard-iOS](https://github.com/MartinRGB/GiftCard-iOS) - 礼品卡购买的炫酷动画. 652 | * [GiftCard-Implementation](https://github.com/MartinRGB/GiftCard-iOS) - 购买的炫酷动画. 653 | * [KIPageView](https://github.com/smartwalle/KIPageView) - 无限循环PageView,横向TableView,无限轮播. 654 | * [简单实用的无限循环轮播图](http://code.cocoachina.com/view/128288) - 简单实用的无限循环轮播图. 655 | * [CPInfiniteBanner](https://github.com/crespoxiao/CPInfiniteBanner) - 是一个循环播放的组件,可以左右无缝滑动,3个imageview实现。[高效图片轮播,两个ImageView实现](http://ios.jobbole.com/84711/). 656 | * [XTLoopScroll](https://github.com/Akateason/XTLoopScroll) - 用两个 timer 三个重用的 view 实现无限循环 scrollView,1自动轮播 2点击监听回调当前图片 3手动滑动后重新计算轮播的开始时间, 良好的用户体验. 657 | * [HotGirls](https://github.com/zangqilong198812/HotGirls) - 卡片动画. 658 | * [Ease](https://github.com/roberthein/Ease) - Animate everything with Ease. 659 | * [KYAnimatedPageControl](https://github.com/KittenYang/KYAnimatedPageControl) - 除了滚动视图时PageControl会以动画的形式一起移动,点击目标页还可快速定位。支持两种样式:粘性小球和旋转方块。 660 | * [Presentation](https://github.com/hyperoslo/Presentation) - 一个类似RazzleDazzle的框架. 661 | * [FillableLoaders](https://github.com/poolqf/FillableLoaders) - 基于 CGPaths 可定制个性化填空式装载类库。附水波上涨式示例. 662 | * [SXWaveAnimate](https://github.com/dsxNiubility/SXWaveAnimate) - 实现非常美观的灌水动画. 663 | * [LSPaomaView](https://github.com/liusen001/LSPaomaView) - 可循环滚动的较长文字,跑马灯,效果很好,一句话集成. 664 | * [Cheetah](https://github.com/suguru/Cheetah) - 易用、高可读链式动画类库。另一个类似类库是 [DKChainableAnimationKit](https://github.com/Draveness/DKChainableAnimationKit). 665 | * [CKWaveCollectionViewTransition](https://github.com/CezaryKopacz/CKWaveCollectionViewTransition) - swift, UICollectionViewController之间切换的动画. 666 | * [TKSubmitTransition](https://github.com/entotsu/TKSubmitTransition) - 基于 UIButton 的登录加载、返回按钮转场动画组件及示例. 667 | * [ARAnimation](https://github.com/AugustRush/ARAnimation) - ARAnimation 对 Core Animation 进行了封装, 帮助 iOS 开发者能更加便捷的在项目中使用动画. 668 | * [渐变特效文字](http://code.cocoachina.com/view/127174) - 做了一个仿iPhone的移动滑块来解锁的渐变特效文字,还有一个类似ktv歌词显示的文字特效. 669 | * [HYAwesomeTransition](https://github.com/nathanwhy/HYAwesomeTransition) - 模仿格瓦拉的转场效果. 670 | * [RYCuteView](https://github.com/Resory/RYCuteView) - 用UIBezierPath实现果冻效果。 [教程](http://www.jianshu.com/p/21db20189c40) 671 | * [STLBGVideo](https://github.com/StoneLeon/STLBGVideo) - STLBGVideo让您的视图控制器的自定义backgroundvideo,[实现说明1](http://www.jianshu.com/p/c4704c086b67)、[实现说明2](http://www.jianshu.com/p/3dcebf0493d1). 672 | * [MYBlurIntroductionView](https://github.com/MatthewYork/MYBlurIntroductionView) - 方便好用的引导类库,在App注册登录页面可以用到. 673 | * [ZFCityGuides](https://github.com/WZF-Fei/ZFCityGuides) - 实现City Guides的动画效果,数字动态变化的动画效果. 674 | * [INPopoverController](https://github.com/indragiek/INPopoverController) - OS X可自由定制的 Popover 视图. 675 | * [WZXJianShuPopDemo](https://github.com/Wzxhaha/WZXJianShuPopDemo) - 仿简书、淘宝等等的View弹出效果,已封装好,使用简单。[实现原理](http://www.jianshu.com/p/a697d2a38b3c) 676 | * [LSAnimator](https://github.com/Lision/LSAnimator) - 非侵入式的多链式动画. 677 | * [PearlSaver](https://github.com/insidegui/PearlSaver) - Face ID detection animation as a screensaver. 678 | 679 | #### 转场@ 680 | 681 | * [RZTransitions](https://github.com/Raizlabs/RZTransitions) - A library of custom iOS View Controller Animations and Interactions. 682 | * [AnimatedTransitionGallery](https://github.com/shu223/AnimatedTransitionGallery) - A gallery app of custom animated transitions for iOS. 683 | * [VCTransitionsLibrary](https://github.com/ColinEberhardt/VCTransitionsLibrary) - 不错的转场动画库. 684 | * [WXSTransition](https://github.com/alanwangmodify/WXSTransition) - 转场动画集合. 685 | 686 | #### 多媒体@ 687 | #### GIF@ 688 | 689 | * [FLAnimatedImage](https://github.com/Flipboard/FLAnimatedImage) - 高性能GIF动画引擎. 690 | * [YLGIFImage](https://github.com/liyong03/YLGIFImage) - 异步方式实现突Gif突破编码、显示,低内存占用. 691 | * [AnimatedGIFImageSerialization](https://github.com/mattt/AnimatedGIFImageSerialization) - Complete Animated GIF Support for iOS, with Functions, NSJSONSerialization-style Class, and (Optional) UIImage Swizzling. 692 | * [XAnimatedImage](https://github.com/khaledmtaha/XAnimatedImage) - XAnimatedImage is a performant animated GIF engine for iOS written in Swift based on FLAnimatedImage :large_orange_diamond: 693 | * [SwiftGif](https://github.com/bahlo/SwiftGif) - :sparkles: A small UIImage extension with gif support :large_orange_diamond: 694 | * [APNGKit](https://github.com/onevcat/APNGKit) - High performance and delightful way to play with APNG format in iOS. :large_orange_diamond: 695 | * [YYImage](https://github.com/ibireme/YYImage) - Image framework for iOS to display/encode/decode animated WebP, APNG, GIF, and more. 696 | * [NSGIF2](https://github.com/metasmile/NSGIF2) - Simplify creation of a GIF from the provided video file url. 697 | * [SwiftyGif](https://github.com/kirualex/SwiftyGif) - High performance GIF engine :large_orange_diamond: 698 | * [UIImageView-PlayGIF](https://github.com/yfme/UIImageView-PlayGIF) - UIImageView-PlayGIF. 699 | * [droptogif](https://github.com/mortenjust/droptogif) - droptogif视频拖拽到应用窗口后自动转换为 GIF 动画(其转换进程动画效果也超赞). 700 | 701 | #### VR@ 702 | 703 | * [HTY360Player](https://github.com/hanton/HTY360Player) - 一款360度全景视频播放器. 704 | * [ios-360-videos](https://github.com/NYTimes/ios-360-videos) - 基于AVPlayer的360度全景视频播放器. 705 | 706 | #### AR@ 707 | 708 | * [Awesome-ARKit](https://github.com/olucurious/Awesome-ARKit) - A curated list of awesome ARKit projects and resources. Feel free to contribute. 709 | * [AR-Source](https://github.com/GeekLiB/AR-Source) - AR开发资料汇总. 710 | * [ARShooter](https://github.com/farice/ARShooter) - A demo Augmented Reality shooter made with ARKit in Swift (iOS 11) http://texnotes.me/post/5/. 711 | * [SmileToUnlock](https://github.com/rsrbk/SmileToUnlock) - This library uses ARKit Face Tracking in order to catch a user's smile. 712 | * [TGLAugmentedRealityView](https://github.com/gleue/TGLAugmentedRealityView) - Augmented Reality made easy -- place overlays on a camera preview and adjust their position depending on device attitude. 713 | * [ARImageViewer](https://github.com/keayou/ARImageViewer) - 一款基于ARKit的AR图片查看器. 714 | 715 | #### 二维码@ 716 | 717 | * [ZXingObjC](https://github.com/TheLevelUp/ZXingObjC) - 👍 An Objective-C Port of ZXing. 718 | * [LBXScan](https://github.com/MxABC/LBXScan) - 👍 A barcode and qr code scanner (二维码、扫码、扫一扫、ZXing和ios系统自带扫码封装,扫码界面效果封装)(Objective-C和Swift均支持). 719 | * [原生实现扫描二维码条码](http://code.cocoachina.com/view/129108) - iOS原生实现扫描二维码条码. 720 | * [ZFScan](https://github.com/Zirkfied/ZFScan) - 仿微信 二维码/条形码 扫描. 721 | * [HMQRCodeScanner](https://github.com/liufan321/HMQRCodeScanner) - 包含 UI 界面的轻量级二维码扫描及生成框架,提供一个导航控制器,扫描 二维码 / 条形码;能够生成指定 字符串 + avatar(可选) 的二维码名片;能够识别相册图片中的二维码(iOS 64 位设备). 722 | * [QRCatcher](https://github.com/100mango/QRCatcher) - 一个简洁美观的二维码扫描应用, [iOS学习:AVFoundation 视频流处理--二维码]. 723 | * [BarcodeScanner](https://github.com/hyperoslo/BarcodeScanner) - 带状态控制的条码扫描库,支持处理相机权限、自定义颜色和提示信息,不依赖其他第三方库). 724 | * [MQRCodeReaderViewController](https://github.com/zhengjinghua/MQRCodeReaderViewController) - 二维码扫描控件. 725 | * [QRWeiXinDemo](https://github.com/lcddhr/QRWeiXinDemo) - 仿微信二维码扫描,中间透明区域. 726 | * [EFQRCode](https://github.com/EyreFree/EFQRCode) - iOS 花式二维码生成库. 727 | 728 | #### PDF@ 729 | 730 | * [Reader](https://github.com/vfr/Reader) - Reader可提供类似iBooks的文档导航,支持屏幕旋转和所有方向,并通过密码保护加密PDF文件,支持PDF链接和旋转页面. 731 | * [PDFXKit](https://github.com/PSPDFKit/PDFXKit) - A drop-in replacement for Apple PDFKit powered by our PSPDFKit framework under the hood. 732 | 733 | #### 流媒体@ 734 | 735 | #### 音频@ 736 | 737 | * [KTVHTTPCache](https://github.com/ChangbaDevs/KTVHTTPCache) - 唱吧出品音视频在线播放缓存框架. 738 | * [AudioKit](https://github.com/AudioKit/AudioKit) - Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS. 739 | * [ESTMusicPlayer](https://github.com/Aufree/ESTMusicPlayer) - 一个简洁、易用的音乐播放器. 740 | * [EZAudio](https://github.com/syedhali/EZAudio) - EZAudio 是一个 iOS 和 OSX 上简单易用的音频框架,根据音量实时显示波形图,基于Core Audio,适合实时低延迟音频处理,非常直观。[中文介绍](https://segmentfault.com/blog/news/1190000000370957),[官网](http://www.syedharisali.com/about). 741 | * [novocaine](https://github.com/alexbw/novocaine) - 高性能的音频,支持iOS and Mac OS X. 742 | * [ROMPlayer](https://github.com/AudioKit/ROMPlayer) - AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player. 743 | * [SubtleVolume](https://github.com/andreamazz/SubtleVolume) - 用更微妙的指示器替换系统卷弹出窗口. 744 | * [NVDSP](https://github.com/bartolsthoorn/NVDSP) - iOS/OSX DSP for audio (with Novocaine). 745 | * [IQAudioRecorderController](https://github.com/hackiftekhar/IQAudioRecorderController) - 一个可以内置App的、通用的、带有漂亮的用户界面音频录制程序. 746 | * [QuietModemKit](https://github.com/quiet/QuietModemKit) - 静态调制解调器的iOS框架(声音数据). 747 | * [IOS录音和播放功能demo](http://d.cocoachina.com/code/detail/285717) - 比较完整的ios录音和播放功能的实现. 748 | * [MCAudioInputQueue](https://github.com/msching/MCAudioInputQueue) - 简易录音类,基于AudioQueue的. 749 | * [MusicPlayert](https://github.com/liuFangQiang/MusicPlayer) - MusicPlayert音乐播放器,用reveal可以查看层次关系,主要实现了歌词的同步显示. 750 | * [音乐播放器](http://code.cocoachina.com/view/129435) - 音乐播放器:显示歌词. 751 | * [amr](http://www.penguin.cz/~utx/amr) - 做即时通讯的音频处理,录音文件是m4a,便于web端的音频播放. 752 | * [边录音边转码](http://code4app.com/ios/%E8%BE%B9%E5%BD%95%E9%9F%B3%E8%BE%B9%E8%BD%AC%E7%A0%81/521c65d56803fab864000001) - 一边录音,一边将录制成的 wav 格式音频文件转码成 amr 音频格式。只支持真机运行调试. 753 | * [DFPlayer](https://github.com/ihoudf/DFPlayer) - 简单又灵活的iOS音频播放组件. 754 | 755 | #### 视频@ 756 | #### 视频播放@ 757 | 758 | * [FFmpeg](https://github.com/FFmpeg/FFmpeg) - 一个处理多媒体数据的开源、免费的库,可以用来记录、转换数字音频、视频,并能将其转化为流. [ffmpeg](http://ffmpeg.org/) - ffmpeg官网,[FFmpeg在iOS上完美编译](http://www.cocoachina.com/ios/20150514/11827.html). 759 | * [vlc](https://github.com/videolan/vlc) - VLC media player. 760 | * [mpv](https://github.com/mpv-player/mpv) - 非常👍👍👍 🎥 Video player based on MPlayer/mplayer2. 761 | * [ijkplayer](https://github.com/Bilibili/ijkplayer) - 非常赞 B站开源的视频播放器,支持Android和iOS. [iOS中集成ijkplayer视频直播框架](http://www.jianshu.com/p/1f06b27b3ac0)。 762 | * [ZFPlayer](https://github.com/renzifeng/ZFPlayer) - 非常赞 基于AVPlayer,支持横屏、竖屏(全屏播放还可锁定屏幕方向),上下滑动调节音量、屏幕亮度,左右滑动调节播放进度. 763 | * [WMPlayer](https://github.com/zhengwenming/WMPlayer) 赞 WMPlayer视频播放器,AVPlayer的封装,继承UIView,想怎么玩就怎么玩。支持播放mp4、m3u8、3gp、mov,网络和本地视频同时支持。全屏和小屏播放同时支持。 cell中播放视频,全屏小屏切换自如. 764 | * [XCDYouTubeKit](https://github.com/0xced/XCDYouTubeKit) - 一个能够在国内播放YouTube视频的播放器. 765 | * [MRVLCPlayer](https://github.com/Maru-zhang/MRVLCPlayer) - 相信Mac用户都很熟悉一款VLC播放器,这款播放器在Mac上表现异常优异,支持的格式几乎涵盖了所有格式(就是这么屌!)。没错,就是它创造者--VideoLAN,开源了一款牛逼的视频播放框架MobileVLCKit![介绍信息:] (http://gold.xitu.io/entry/578c304b2e958a0054320503?from=singlemessage&isappinstalled=1). 766 | * [plask](https://github.com/deanm/plask) - Plask is a multimedia programming environment. 767 | * [KRVideoPlayer](https://github.com/36Kr-Mobile/KRVideoPlayer) - 36Kr出品的类似Weico的播放器,支持竖屏模式下全屏播放. 768 | * [JPVideoPlayer](https://github.com/Chris-Pan/JPVideoPlayer) - 类似微博主页在列表中自动播放视频. 769 | * [HcdCachePlayer](https://github.com/Jvaeyhcd/HcdCachePlayer) - 在线视频边下边播,支持缓存到本地. 770 | * [bilibili-mac-client](https://github.com/typcn/bilibili-mac-client) - 👍 bilibili非官方的mac客户端. 771 | * [PBJVideoPlayer](https://github.com/piemonte/PBJVideoPlayer) - 一个易用的流媒体播放器. 772 | * [KrVideoPlayerPlus](https://github.com/PlutusCat/KrVideoPlayerPlus) - 根据36Kr开源的KRVideoPlayer 进行修改和补充实现一个轻量级的视频播放器,满足大部分视频播放需求. 773 | * [VKVideoPlayer](https://github.com/viki-org/VKVideoPlayer) - 一个非常不错的拥有上百万用户的视频播放器. 774 | * [PKShortVideo](https://github.com/pepsikirk/PKShortVideo) - iOS仿微信小视频功能开发优化记录. 775 | * [AVAnimator](http://www.modejong.com/AVAnimator/) - 一个不错的原生的开源视频库,可以轻松实现视频、音频的功能. 776 | * [SSVideoPlayer](https://github.com/immrss/SSVideoPlayer) - 一个支持本地和网络视频播放的库. 777 | * [SRGMediaPlayer-iOS](https://github.com/SRGSSR/SRGMediaPlayer-iOS) - 一个提供简洁的方法为iOS应用添加通用的音频、视频播放的库. 778 | * [ABMediaView](https://github.com/andrewboryk/ABMediaView) - 一个UIImageView的子类,可以播放本地和来源于网络的图片、视频、GIF和音频,可以最小化和全屏,同时支持视频设置GIF预览图. 779 | * [kxmovie](https://github.com/kolyvan/kxmovie) - 使用ffmpeg的影片播放器,[修改说明](http://www.cocoachina.com/bbs/read.php?tid=145575), [修改代码](https://github.com/kinglonghuang),[基于FFmpeg的kxMoive艰难的编译运行](https://github.com/namebryant/FFmpeg-Compilation). 780 | * [JPVideoPlayer](https://github.com/newyjp/JPVideoPlayer) - Automatic play video in UITableView like Weibo home page in main thread and never block it. 781 | * [StreamingKit](https://github.com/tumtumtum/StreamingKit) - StreamingKit流媒体音乐播放器. 782 | * [FreeStreamer](https://github.com/muhku/FreeStreamer) - FreeStreamer流媒体音乐播放器,cpu占用非常小. 783 | * [DOUAudioStreamer](https://github.com/douban/DOUAudioStreamer) - DOUAudioStreamer豆瓣的音乐流媒体播放器. 784 | * [fmpro](https://github.com/fmpro/fmpro) - 电台播放器,支持锁屏歌词,支持基本播放流程,歌词展示,后台锁屏播放和控制以及锁屏后封面+歌词,[fmpro_R](https://github.com/jovisayhehe/fmpro_R) . 785 | * [TBPlayer](https://github.com/suifengqjn/TBPlayer) - 视频变下变播,把播放器播放过的数据流缓存到本地,支持拖动,采用avplayer.[实现说明](http://www.jianshu.com/p/990ee3db0563). 786 | * [IWatch](https://github.com/280772270/IWatch) - 一个视频日报类的app 播放器用到了AVFoudation. 787 | * [自定义视频播放器AVPlayer](http://code.cocoachina.com/view/128253) - 利用系统类AVPlayer实现完全自定义视频播放器,显示播放时间,缓存等功能。代码清晰,注释详细. 788 | * [DraggableYoutubeFloatingVideo](https://github.com/vizllx/DraggableYoutubeFloatingVideo) - 展示像类似Youtube移动应用的那种浏览视频的效果,当点击某视频时能够从右下方弹出一个界面,并且该界面能够通过手势,再次收缩在右下方并继续播放,通过AutoLayout设计实现. 789 | 790 | #### 视频处理@ 791 | 792 | * [BeautifyFaceDemo](https://github.com/Guikunzhi/BeautifyFaceDemo) - 一个基于 GPUImage 的实时直播磨皮滤镜的开源实现,主要功能脸部去斑磨皮. 793 | * [simplest_ffmpeg_mobile](https://github.com/leixiaohua1020/simplest_ffmpeg_mobile) ffmpeg examples in Android / IOS / WinPhone. 794 | 795 | #### 视频录制@ 796 | 797 | * [SCRecorder](https://github.com/rFlex/SCRecorder) - 酷似 Instagram/Vine 的音频/视频摄像记录器,以 Objective-C 为基础的过滤器框架。 你可以做很多如下的操作:记录多个视频录像片段。删除任何你不想要的记录段。可以使用任何视频播放器播放片段。保存的记录可以在序列化的 NSDictionary 中使用。(在 NSUserDefaults 的中操作)添加使用 Core Image 的视频滤波器。可自由选择你需要的 parameters 合并和导出视频. 798 | * [LLSimpleCamera](https://github.com/omergul123/LLSimpleCamera) - 视频录制 A simple, customizable camera control - video recorder for iOS. 799 | * [SlowMotionVideoRecorder](https://github.com/shu223/SlowMotionVideoRecorder) - 120 fps SLO-MO video recorder using AVFoundation. Including convenient wrapper class. Available on the iPhone5s. 800 | * [PBJVision](https://github.com/piemonte/PBJVision) - iOS媒体捕获,点击录制视频,显示运动和照片. 801 | * [ALCameraViewController](https://github.com/AlexLittlejohn/ALCameraViewController) - ALCameraViewController 摄像头视图控制器(含可定制照片选择器,图片简单裁切功能)及演示. 802 | * [VideoBeautify](https://github.com/xujingzhou/VideoBeautify) - 功能酷似美拍,秒拍等应用的源码:对视频进行各种美化处理,采用主题形式进行分类,内含各种滤镜,动画特效和音效等. 803 | * [IPDFCameraViewController](https://github.com/mmackh/IPDFCameraViewController) - 支持相机定焦拍摄、滤镜、闪光、实时边框检测以及透视矫正功能,并有简单易用的API. 804 | * [LLSimpleCamera](https://github.com/omergul/LLSimpleCamera) - A simple, customizable camera control - video recorder for iOS. 805 | 806 | #### 视频剪切@ 807 | 808 | * [ICGVideoTrimmer](https://github.com/itsmeichigo/ICGVideoTrimmer) - ICGVideoTrimmer提供提供视频剪切的视图(类似系统相册中浏览视频时顶部那个条状视图),左右两个边界选择器还能够自定义. 809 | * [VideoEditing](https://github.com/ShelinShelin/VideoEditing) - Video processing of the video capture and add background music. 810 | 811 | #### 弹幕@ 812 | 813 | * [BarrageRenderer](https://github.com/unash/BarrageRenderer) - 一个 iOS 上的弹幕渲染库. 814 | * [LiveSendGift](https://github.com/Jonhory/LiveSendGift) - 直播发送弹幕效果. 815 | * [HJDanmakuDemo](https://github.com/panghaijiao/HJDanmakuDemo) - iOS端视频弹幕. 816 | 817 | #### 直播@ 818 | 819 | * [LFLiveKit](https://github.com/LaiFengiOS/LFLiveKit) - 开源遵循RTMP协议的直播SDK. 820 | * [MiaowShow](https://github.com/SunLiner/MiaowShow) - iOS视频直播项目 http://www.jianshu.com/users/9723687edfb5. 821 | * [LMLiveStreaming](https://github.com/chenliming777/LMLiveStreaming) - iOS Live,H264 and AAC Hard coding,support GPUImage Beauty, rtmp and flv transmission,weak network lost frame,Dynamic switching rate [参考文档](http://www.jianshu.com/p/b8db6c142aad). 822 | * [PLPlayerKit](https://github.com/pili-engineering/PLPlayerKit) - PLPlayerKit 是 Pili 直播 SDK 的 iOS 播放器。支持所有直播常用的格式,如:RTMP、HLS、FLV。拥有优秀的功能和特性,如:首屏秒开、追帧优化、丰富的数据和状态回调、硬解软解支持。而且可以根据自己的业务进行高度定制化开发. 823 | * [PLMediaStreamingKit](https://github.com/pili-engineering/PLMediaStreamingKit) - PLMediaStreamingKit 是 Pili 直播 SDK 的 iOS 推流端,支持 RTMP 推流,h.264 和 AAC 编码,硬编、软编支持。具有丰富的数据和状态回调,方便用户根据自己的业务定制化开发。具有直播场景下的重要功能,如:美颜、背景音乐、水印等功能. 824 | * [520Linkee](https://github.com/GrayJIAXU/520Linkee) - 本项目实现了作为一个直播App的基本功能,比如本地视频流采集、播放、美颜、礼物、点赞出心等. 825 | * [LMLiveStreaming](https://github.com/chenliming777/LMLiveStreaming) - iOS直播,支持H246/AAC,支持GPUImage美化,支持rtmp和flv,较慢的网络优化. 826 | * [直播技术的总结](https://github.com/tiantianlan/LiveExplanation) 827 | * [Tencent-NOW](https://github.com/ChinaArJun/Tencent-NOW) - iOS视频直播:高仿 腾讯旗下 < NOW > 直播 类似 映客 斗鱼 直播类型 喜欢的记点star谢谢 IOS Live video. 828 | 829 | #### 图像@ 830 | 831 | * [SVGKit](https://github.com/SVGKit/SVGKit) - SVGKit是一个非常强大的,可以快速渲染SVG文件的框架。你可以直接把SVG文件加载至app中,并且SVG中的每个图形会变成一个CAShapeLayer,可以方便地进行缩放和动画你的图形。如果你想渲染app中的矢量图形,SVGKit是个不错的解决办法. 832 | 833 | #### 拍照@ 834 | 835 | * [Cool-iOS-Camera](https://github.com/GabrielAlva/Cool-iOS-Camera) - Cool-iOS-Camera. 836 | * [FastttCamera](https://github.com/IFTTT/FastttCamera) - FastttCamera 快速照相. 837 | * [DBCamera](https://github.com/danielebogo/DBCamera) - DBCamera is a simple custom camera with AVFoundation. 838 | * [ZPCamera](https://github.com/hawk0620/ZPCamera) - An OpenSource Camera App. 839 | * [HeartBeatsPlugin](https://github.com/YvanLiu/HeartBeatsPlugin) - 手机摄像头测心率 带心率折线图和返回瞬时心率. 840 | 841 | #### 图像处理@ 842 | 843 | * [GPUImage](https://github.com/BradLarson/GPUImage) - 处理图片效果. 844 | * [LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES) - OpenGL ES的各种尝试. 845 | * [GPUImage详解](http://www.jianshu.com/nb/4268718) 846 | * [OpenGLES详解](http://www.jianshu.com/p/64d9c58d8344) - 一个相对完整的OpenGLES的学习博客,包含源码. 847 | * [OpenGLES系列教程](http://www.jianshu.com/nb/2135411) 848 | * [CTPanoramaView](https://github.com/scihant/CTPanoramaView) - 显示球面、圆柱形的摄像. 849 | * [HCPhotoEdit](https://github.com/gmfxch/HCPhotoEdit) - 仿Camera360 SDK,利用GPUImage框架实现基本的图片处理功能. 850 | * [YYImage](https://github.com/ibireme/YYImage) - 功能强大的 iOS 图像框架,支持大部分动画图像、静态图像的播放/编码/解码. 851 | * [TOCropViewController](https://github.com/TimOliver/TOCropViewController) - 图片裁剪. 852 | * [BKAsciiImage](https://github.com/bkoc/BKAsciiImage) - Convert UIImage to ASCII art. 853 | * [TinyCrayon](https://github.com/TinyCrayon/TinyCrayon-iOS-SDK) - 一个智能、易用的图片裁剪、Image markingSDK. 854 | * [GPUImage Demo](https://github.com/loyinglin/GPUImage) - 源码级别对GPUImage进行剖析以及尝试. 855 | * [YBPasterImage](https://github.com/wangyingbo/YBPasterImage) - 给图片添加滤镜、贴纸和标签功能,支持14种滤镜效果,17种标签样式. 856 | * [hotoimagefilter](https://www.kancloud.cn/trent/hotoimagefilter/102786) - 专业介绍图像处理中各种滤镜的算法实现,C#版本. 857 | * [DynamicClipImage](https://github.com/Yasic/DynamicClipImage) - iOS实现动态区域裁剪图片. 858 | 859 | #### 图像浏览@ 860 | 861 | * [MWPhotoBrowser](https://github.com/mwaterfall/MWPhotoBrowser) - 一个非常不错的照片浏览器 [解决MWPhotoBrowser中的SDWebImage加载大图导致的内存警告问题](http://www.superqq.com/blog/2015/01/22/jie-jue-mwphotobrowserzhong-de-sdwebimagejia-zai-da-tu-dao-zhi-de-nei-cun-jing-gao-wen-ti/). 862 | * [TZImagePickerController](https://github.com/banchichen/TZImagePickerController) - 很赞 一个支持多选、选原图和视频的图片选择器,同时有预览功能,适配了iOS6789系统。[教程](http://www.cocoachina.com/ios/20160112/14942.html). 863 | * [RMPZoomTransitionAnimator](https://github.com/recruit-mp/RMPZoomTransitionAnimator) - 一个放大缩小的动效开源库,可以实现图片的放大缩小效果. 864 | * [ZLPhotoBrowser](https://github.com/longitachi/ZLPhotoBrowser) - 方便易用的相册多选框架,支持预览/相册内拍照、预览快速多选相片,3DTouch预览照片,单选gif、Live Photo及video;相册混合选择;原图功能;支持多语言国际化(中文简/繁,英语,日语);在线下载iCloud端图片;自定义最大选择量及最大预览量;自定义照片升序降序排列;自定义照片显示圆角弧度. 865 | * [CLImageEditor](https://github.com/yackle/CLImageEditor) - 超强的图片编辑库,快速帮你实现旋转,防缩,滤镜等等一系列麻烦的事情. 866 | * [PYPhotoBrowser](https://github.com/iphone5solo/PYPhotoBrowser) - 图片浏览器。主要用于社交app,用于呈现一组图片。流水布局 、 线性布局;单击 、双击 、捏合 、旋转、拖拽、侧滑. 867 | * [EBPhotoPages](https://github.com/EddyBorja/EBPhotoPages) - 类似facebook的相册浏览库. 868 | * [RSKImageCropper](https://github.com/ruslanskorb/RSKImageCropper) - 适用于iOS的图片裁剪器,类似Contacts app,可上下左右移动图片选取最合适的区域. 869 | * [WZRecyclePhotoStackView](http://code.cocoachina.com/detail/232156) - 删除照片交互--WZRecyclePhotoStackView,就是模拟生活中是删除或保留犹豫不决的情形而产生的。 在上滑,下滑的部分,借鉴了[TinderSimpleSwipeCards](https://github.com/cwRichardKim/TinderSimpleSwipeCards). 870 | * [PhotoTweaks](https://github.com/itouch2/PhotoTweaks) - 这个库挺赞的,正好是对图像操作的. 871 | * [CorePhotoBroswerVC](https://github.com/CharlinFeng/CorePhotoBroswerVC) - 快速集成高性能图片浏览器,支持本地及网络相册. 872 | * [KYElegantPhotoGallery](https://github.com/KittenYang/KYElegantPhotoGallery) - 一个优雅的图片浏览库. 873 | * [SDPhotoBrowser](https://github.com/gsdios/SDPhotoBrowser) - 仿新浪动感图片浏览器,非常简单易用的图片浏览器,模仿微博图片浏览器动感效果,综合了图片展示和存储等多项功能. 874 | * [HZPhotoBrowser](https://github.com/chennyhuang/HZPhotoBrowser) - 一个类似于新浪微博图片浏览器的框架(支持显示和隐藏动画;支持双击缩放,手势放大缩小;支持图片存储;支持网络加载gif图片,长图滚动浏览;支持横竖屏显示). 875 | * [ZZPhotoKit](https://github.com/ACEYL/ZZPhotoKit) - 基于Photos和AVFoundation框架开源,相册多选与相机连拍. 876 | * [MarkingMenu](https://github.com/FlexMonkey/MarkingMenu) - 基于手势、类似 Autodesk Maya 风格标记菜单及图片渲染. 877 | * [SXPhotoShow](https://github.com/dsxNiubility/SXPhotoShow) - UICollectionViewFlowLayout流水布局 是当下collectionView中常用且普通的布局方式。本代码也写了三种好看的布局,其中LineLayout和流水布局有很大的相同点就直接继承UICollectionViewFlowLayout,然后StackLayout,CircleLayout这两种都是直接继承自最原始的UICollectionViewLayout 布局方案. 878 | * [PictureWatermark](https://github.com/cgwangding/PictureWatermark) - 主要实现了给图片加文字以及图片水印的功能,已封装成了UIImage的类别,方便使用. 879 | * [PhotoBrowser](https://github.com/CharlinFeng/PhotoBrowser) - 照片浏览器. 880 | * [StitchingImage](https://github.com/zhengjinghua/StitchingImage) - 仿微信群组封面拼接控件, 直接拖进项目就可使用,[教程](http://gold.xitu.io/entry/56395f5360b20b143a9178f6). 881 | * [SDECollectionViewAlbumTransition](https://github.com/seedante/SDECollectionViewAlbumTransition) - 用自定义的 push 和 pop 实现了有趣的 iOS 相册翻开动画效果. 882 | * [DNImagePicker](https://github.com/AwesomeDennis/DNImagePicker) - 类似wechat的图片选择. 883 | * [CocoaPicker](https://github.com/lioonline/CocoaPicker) - 仿QQ图片选择器(OC). 884 | * [JFImagePickerController](https://github.com/johnil/JFImagePickerController) - vvebo作者:多选照片、预览已选照片、针对超大图片优化. 885 | * [VIPhotoView](https://github.com/vitoziv/VIPhotoView) - 图片浏览,用于展示图片的工具类,因为是个 View,所以你可以放在任何地方显示。支持旋转,双击指定位置放大等. 886 | * [YUCIHighPassSkinSmoothing](https://github.com/YuAo/YUCIHighPassSkinSmoothing) - 磨皮滤镜. 887 | * [YUGPUImageHighPassSkinSmoothing](https://github.com/YuAo/YUGPUImageHighPassSkinSmoothing) - 一个基于 GPUImage 的磨皮滤镜. 888 | * [XHImageViewer](https://github.com/JackTeam/XHImageViewer) - XHImageViewer is images viewer, zoom image. 889 | * [card.io-iOS-SDK](https://github.com/AllLuckly/card.io-iOS-SDK) - OCR光学识别储蓄卡以及信用卡,[oc与swift使用教程](http://www.jianshu.com/p/82f73c23a76a). 890 | * [自定义宽高比的相册框 拍照](http://code.cocoachina.com/detail/320603/) - 取出照片时 弹出自定义view。在这个自定义view上创建一个需要的相框大小的view层 把取出的图片赋值给UIImageView按缩放添加到这个层上。对uiimageView添加捏合、移动 手势。添加按钮 选取,最后根据位移和缩放比例 裁剪image. 891 | * [LGPhotoBrowser](https://github.com/gang544043963/LGPhotoBrowser) - LGPhotoBrowser:相册选择/浏览器/照相机(仿微信),包含三个模块:照片浏览器,相册选择器,照相机. 892 | * [BeautyHour](https://github.com/xujingzhou/BeautyHour) - 完整应用,功能与“美图秀秀”雷同. 893 | * [WSImagePicker](https://github.com/wsjtwzs/WSImagePicker) - 高性能多选图片库,类似于微信发布朋友圈中 ‘获取相册及拍照’模块. 894 | * [JTSImageViewController](https://github.com/jaredsinclair/JTSImageViewController) - 图片浏览. 895 | * [SGPhotoBrowser](https://github.com/Soulghost/SGPhotoBrowser) - 图片浏览. 896 | 897 | #### 图像缓存@ 898 | 899 | * [SDWebImage](https://github.com/rs/SDWebImage) - 非常优秀的图像缓存库. 900 | * [UIActivityIndicator-for-SDWebImage](https://github.com/JJSaccolo/UIActivityIndicator-for-SDWebImage) - 为SDWebImage显示加载效果. 901 | * [FastImageCache](https://github.com/path/FastImageCache) - 👍 非常棒的一个 一个高效显示图片的库,支持图片缓存、平滑滚动和图片检索. 902 | * [DFImageManager](https://github.com/kean/DFImageManager) - 图片加载、处理、缓存、预加载. 903 | * [Twitter Image Pipline](https://github.com/twitter/ios-twitter-image-pipeline) - Twitter出品的一个高性能的图片下载、缓存库. 904 | * [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - Alamofire的一个图片组件,支持图片序列化,UIImage扩展(压缩、缩放、圆角、核心图像),单个、多个的图片过滤、自动清除内存,队列图片下载、URL鉴定、图片占位和异步远程图片下载、UIImageView过滤和转换等. An image component library for Alamofire. 905 | * [AsyncImageView](https://github.com/nicklockwood/AsyncImageView) - 一个易用的UIImageView扩展,用于异步加载、显示图片,对UI显示无影响。 906 | * [PINRemoteImage](https://github.com/pinterest/PINRemoteImage) - 一个线程安全、高效的远程图片管理库,支持图片下载、缓存、处理,也支持GIF. 907 | * [FastImageCache](https://github.com/path/FastImageCache) - 非常赞 FastImageCache 网络图片获取及缓存处理,[iOS图片加载速度极限优化—FastImageCache解析](http://blog.cnbang.net/tech/2578/). 908 | * [YYWebImage](https://github.com/ibireme/YYWebImage) - 异步图片加载库 (supports WebP, APNG, GIF). 909 | * [EGOCache](https://github.com/enormego/EGOCache) - 十分知名的第三方缓存类库,可以缓存NSString、UIImage、NSImage以及NSData。除此,如果还可以缓存任何一个实现了接口的对象。所有缓存的数据都可以自定义过期的时间,默认是1天。EGOCache 支持多线程(thread-safe),[UITableView加载多张照片导致内存上涨的问题](http://www.superqq.com/blog/2014/11/06/ioskai-fa-:uitableviewjia-zai-duo-zhang-zhao-pian-dao-zhi-nei-cun-shang-zhang-de-wen-ti/)。 910 | * [YYWebImage](https://github.com/ibireme/YYWebImage/) - 一个图片加载库 YYWebImage,支持 APNG、WebP、GIF 播放,支持渐进式图片加载,更高性能的缓存,更多图像处理方法,可以替代 SDWebImage 等开源库,[相关文章](http://blog.ibireme.com/2015/11/02/mobile_image_benchmark/). 911 | * [JDSwiftAvatarProgress](https://github.com/JellyDevelopment/JDSwiftAvatarProgress) - 容易定制的异步图片加载进度条. 912 | * [ImageButter](https://github.com/dollarshaveclub/ImageButter) - 平滑的处理网络图片,支持缓存,异步编码,加载进度View,GIFs动画等. 913 | 914 | #### 滤镜@ 915 | 916 | * [XBImageFilters](https://github.com/xissburg/XBImageFilters) - 图像滤镜. 917 | * [CoreImageShop](https://github.com/rFlex/CoreImageShop) - CoreImageShop图片滤镜处理-- Mac app that let you create a complete Core Image Filter usable on iOS using SCRecorder。 918 | 919 | #### 图像识别@ 920 | 921 | * [libfacedetection](https://github.com/ShiqiYu/libfacedetection) - C++ 人脸识别 包含正面和多视角人脸检测两个算法.优点:速度快(OpenCV haar+adaboost的2-3倍), 准确度高 (FDDB非公开类评测排名第二),能估计人脸角度. 922 | * [YLFaceuDemo](https://github.com/Guikunzhi/YLFaceuDemo) - 在直播应用中添加Faceu贴纸效果。Faceu贴纸效果其实就是在人脸上贴一些图片,同时这些图片是跟随着人脸的位置改变的。[说明](http://www.jianshu.com/p/ba1f79f8f6fa). 923 | * [IDCardRecognition](https://github.com/zhongfenglee/IDCardRecognition) - 中国大陆第二代身份证识别,自动读出身份证上的信息(姓名、性别、民族、住址、身份证号码)并截取身份证照片 Edit 924 | * [AiyaEffectsIOS](https://github.com/aiyaapp/AiyaEffectsIOS) - 宝宝特效 SDK IOS Demo,支持美颜,3D特效,3D动画特效,2D特效等,免费使用 visual effects IOS demo, support 3D effect, 3D Animation, 2D effect for FREE http://www.bbtexiao.com/. 925 | 926 | #### 图像圆角@ 927 | 928 | * [ZYCornerRadius](https://github.com/liuzhiyi1992/ZYCornerRadius) - 赞 一句代码,圆角风雨无阻。A Category to make cornerRadius for UIImageView have no Offscreen-Rendered, be more efficiency. http://zyden.vicp.cc/zycornerradius/ 929 | 930 | #### 数据结构/算法@ 931 | 932 | * [LearningMasteringAlgorithms-C](https://github.com/yourtion/LearningMasteringAlgorithms-C) -《算法精解:C语言描述》源码及Xcode工程、Linux工程. 933 | * [Changeset](https://github.com/osteslag/Changeset) - Minimal edits from one collection to another :large_orange_diamond: 934 | * [Brick](https://github.com/hyperoslo/Brick) - :droplet: A generic view model for both basic and complex scenarios :large_orange_diamond: 935 | * [Algorithm](https://github.com/CosmicMind/Algorithm) - Algorithm is a collection of data structures that are empowered by a probability toolset. :large_orange_diamond: 936 | * [AnyObjectConvertible](https://github.com/tarunon/AnyObjectConvertible) - Convert your own struct/enum to AnyObject easily. :large_orange_diamond: 937 | * [EKAlgorithms](https://github.com/EvgenyKarkan/EKAlgorithms) - Some well known CS algorithms & data structures in Objective-C. 938 | * [Monaka](https://github.com/naru-jpn/Monaka) - Convert custom struct and fundamental values to NSData. 939 | * [Pencil](https://github.com/naru-jpn/pencil) - Write values to file and read it more easily. :large_orange_diamond: 940 | * [AlgorithmOC](https://github.com/wang542413041/AlgorithmOC) - OC算法与数据结构实现. 941 | 942 | #### 机器学习@ 943 | 944 | * [ShowAndTell](https://github.com/LitleCarl/ShowAndTell) - A Show And Tell implementation for iOS 11.0 based on CoreML. 945 | 946 | #### 上架@ 947 | 948 | * [Solve-App-Store-Review-Problemm](https://github.com/wg689/Solve-App-Store-Review-Problem) - (ipv6,ipv6被拒绝,后台定位等审核问题的终极解决方案汇总). 949 | 950 | #### iOS11@ 951 | 952 | * [iOS11](https://github.com/2877025939/iOS11) - 这里总结了大家iOS 11,iPhone X 适配问题.如有问题,欢迎大家讨论. 953 | 954 | #### 应用内支付@ 955 | 956 | * [IAPDemo](https://github.com/WildDylan/IAPDemo) - 应用内支付IAP全部流程, [教程](http://www.jianshu.com/p/e9ae4cece800). 957 | * [IAPHelper](https://github.com/saturngod/IAPHelper) - 应用内付费给我们提供了很多样本代码,而这个库丢掉了那些代码,将金钱交易相关的大多通用任务做了简单的封装. 958 | 959 | #### Xcode8插件@ 960 | 961 | * [Import](https://github.com/markohlebar/Import) 快捷导入头文件-Xcode extension for adding imports from anywhere in the code. 962 | * [XcodeSourceEditorExtension-Alignment](https://github.com/tid-kijyun/XcodeSourceEditorExtension-Alignment) 对齐属性声明 This Xcode source editor extension align your assignment statement. 963 | * [Dash-iOS](https://github.com/Kapeli/Dash-iOS) Dash gives your iPad and iPhone instant offline access to 150+ API documentation sets https://kapeli.com/dash_ios 964 | * [HYBUnicodeReadable](https://github.com/CoderJackyHuang/HYBUnicodeReadable) -解决打印日志对于Unicode编码不能正常显示中文的问题,只需要将文件导入工程,不需要引用,就能达到打印日志显示Unicode编码中文数据 965 | * [JSONExport](https://github.com/Ahmed-Ali/JSONExport) - 一个json转模型的mac软件,ESJsonFormat-Xcode的替代产品,非常不错👍 . 966 | * [WHC_DataModelFactory](https://github.com/netyouli/WHC_DataModelFactory) Mac上iOS开发辅助工具,快速把json/xml数据转换生成对应模型类属性,省去麻烦手动创建,提高开发效率。 967 | 968 | #### UI@ 969 | 970 | #### 综合UI@ 971 | 972 | * [Texture](https://github.com/TextureGroup/Texture) - Texture——保持最复杂的用户界面的流畅和响应. 973 | * [Material-Controls-For-iOS](https://github.com/fpt-software/Material-Controls-For-iOS) - Many Google Material Design Controls for iOS native application. 974 | * [Material-Controls-For-iOS](https://github.com/fpt-software/Material-Controls-For-iOS) - 大神模仿谷歌做的各种各样的iOS原生特效控件,非常全面. 975 | * [Form](https://github.com/hyperoslo/Form) - Form 是一个方便开发者创建表单填写工作的 UI 库. 976 | * [material-components-ios](https://github.com/material-components/material-components-ios) - 基于 Material Design 的组件库,包含iOS、Android、Web 三个平台的组件库和调用方法. 977 | * [fluid-slider](https://github.com/Ramotion/fluid-slider) - A slider widget with a popup bubble displaying the precise value selected. 978 | 979 | #### 列表@ 980 | 981 | * [Eureka](https://github.com/xmartlabs/Eureka) - Eureka可以帮你简单优雅的实现动态table-view表单。它由rows,sections和forms组成。如果你的app包含大量表单,Eureka可以真正帮你节省时间. 982 | * [MHVideoPhotoGallery](https://github.com/mariohahn/MHVideoPhotoGallery) - A Photo and Video Gallery. 983 | 984 | #### TableView@ 985 | 986 | * [SWTableViewCell](https://github.com/CEWendel/SWTableViewCell) - 非常赞 UITableViewCell 的子类, 实现了左右滑动显示信息视图并调出按钮. 987 | * [RETableViewManager](https://github.com/romaonthego/RETableViewManager) - 赞 一个非常强大的使用数据驱动的 UITableView 内容管理。可以十分方便地生成各种样式、各种功能的TableView。只要开发者能想到的列表效果或者功能,都可以利用这份代码迅速编写出来。比如,之前要实现一个填写各种资料的列表,可能需要很多代码,现在只需要几行代码就可以实现. 988 | * [DZNEmptyDataSet](https://github.com/dzenbot/DZNEmptyDataSet) - 非常赞 DZNEmptyDataSet算是一个很标准的iOS内建方式,适合用来处理空的tableview和collection view。会自动将collection view处理完善,并将用户消息以合适美观的方式显示出来。每个iOS项目都可以自动处理. 989 | * [folding-cell](https://github.com/Ramotion/folding-cell) - 很赞 一个比较酷炫的cell折叠动画效果. 990 | * [VVeboTableViewDemo](https://github.com/johnil/VVeboTableViewDemo) - 此项目由VVebo剥离,希望你能通过这个demo看到我是如何进行TableView流畅度优化的. 991 | * [SWTableViewCell](https://github.com/onevcat/SWTableViewCell) - 国内开源作者,带很多手势的表单元格. 992 | * [MGSwipeTableCell](https://github.com/MortimerGoro/MGSwipeTableCell) - 另一个常见于很多应用中的UI组件,苹果应该考虑在标准的iOS SDK中加入一些类似的内容。Swipeable表格cell是这个pod的最佳描述,也是最好的。非常👍👍👍 . 993 | * [MCSwipeTableViewCell](https://github.com/alikaragoz/MCSwipeTableViewCell) - 带很多手势的表单元格. 994 | * [TMQuiltView](https://github.com/1000Memories/TMQuiltView) - 瀑布流. 995 | * [XRWaterfallLayout](https://github.com/codingZero/XRWaterfallLayout) - 超简单的瀑布流实现,[实现说明](http://www.cocoachina.com/ios/20160407/15872.html). 996 | * [WaterfallFlowDemo](https://github.com/lengmolehongyan/WaterfallFlowDemo) - 一个简单的UICollectionView瀑布流布局演示demo. 997 | * [XLForm](https://github.com/xmartlabs/XLForm) - 很多表格类的table,写法更高冷一点,推荐使用. 998 | * [AMWaveTransition](https://github.com/andreamazz/AMWaveTransition) - 很炫的带有表格的视图控制器切换效果,点击每个栏目会有限带有波浪效果的信息展示,类似于Facebook Paper. 999 | * [UIScrollSlidingPages](https://github.com/TomThorpe/UIScrollSlidingPages) - 允许添加多视图控件,并且可以横向滚动。有点类似于Groupon app. 1000 | * [HorizontalScrollCell](https://github.com/mcelayir/HorizontalScrollCell) - HorizontalScrollCell是一款使用方便的水平方向可滚动的单元格,适用于UICollectionView中实现水片方向滚动视图. 1001 | * [SYJiugonggeTableView](https://github.com/shiyuan17/syTableView) - tableView封装的九宫格. 1002 | * [UUChatTableView](https://github.com/ZhipingYang/UUChatTableView) - UUChatTableView 气泡聊天界面,支持文本、图片以及音频的气泡聊天界面。[源码推荐说明](http://www.cocoachina.com/ios/20150205/11116.html). 1003 | * [Atlas-iOS](https://github.com/layerhq/Atlas-iOS) - 快速在iOS里集成聊天功能,类似开源版本的环信。Layer家开源了一套聊天app界面的解决方案.看起来很赞,很多蛮复杂的东西直接都帮封好了。不得不说现在做app开发真是很简单,大部分时间搭积木就可以了。[官方网站](https://atlas.layer.com/). 1004 | * [DLSlideView](https://github.com/agdsdl/DLSlideView) - DLSlideView对常见的顶部Tab页点击、滑动分页做了封装。它使用基于ViewController的container特性(而不是scrollview)来管理各个子页面,以支持无限分页,[源码推荐说明](http://www.cocoachina.com/ios/20150205/11116.html). 1005 | * [VOVCManager](https://github.com/pozi119/VOVCManager) - 页面管理器:1.跳转指定页面,只需要知道viewController的Class名,如果有storyboard,则需要指定storyboard名;2.无需添加基类;3.支持URLScheme跳转指定页面。 1006 | * [MBXPageViewController](https://github.com/Moblox/MBXPageViewController) - 简洁快速的页面切换--MBXPageViewController,带有按钮控件的UIPageController,非常整洁、简单以及快速。该项目通过三种形式展示页面之间的切换,比如导航栏上的多个tab切换、页面左右两端箭头指示切换,以及使用分段控件. 1007 | * [PagerTab](https://github.com/ming1016/PagerTab) - UIScrollView实现滑动转换页面,类似网易云音乐iOS版的页面滑动切换效果. 1008 | * [BATabBarController](https://github.com/antiguab/BATabBarController) - A TabBarController with a unique animation for selection. [GUITabPagerViewController](https://github.com/guilhermearaujo/GUITabPagerViewController) - 多个tab滑动切换. 1009 | * [VOMetroLayoutDemo](https://github.com/pozi119/VOMetroLayoutDemo) - Metro风格的UICollectionView, 目前只支持横向布局,仅在iPad上应用. 1010 | * [KYCellAnimation](https://github.com/KittenYang/KYCellAnimation) - 给UITableViewCell增加进入的动画. 1011 | * [RDVTabBarController](https://github.com/robbdimitrov/RDVTabBarController) - 一个TabBar组件,可以方便设置底部菜单的文字图片,点击效果,小红点提示等. 1012 | * [WXTabBarController](https://github.com/leichunfeng/WXTabBarController) - 在系统 UITabBarController 的基础上完美实现了安卓版微信 TabBar 的滑动切换功能,单手操作 iPhone 6 Plus 切换 TabBar 一直是一件很痛苦的事情,而滑动切换是一种不错的解决方案,支持屏幕旋转. 1013 | * [CYLTableViewPlaceHolder](https://github.com/ChenYilong/CYLTableViewPlaceHolder) - 一行代码完成“空TableView占位视图”管理. 1014 | * [GooeyTabbar](https://github.com/KittenYang/GooeyTabbar) - 皮筋式弹性缩放工具栏示例及演示. 1015 | * [横向展示文本内容的自定义cell](http://d.cocoachina.com/code/detail/298409) - 可以横向展示文本内容的自定义cell,根据文本无限滚动. 1016 | * [ExpandingStackCells](https://github.com/jozsef-vesza/ExpandingStackCells) - 采用 UIStackView 实现表格单元格扩展内容显示示例及解决方案. 1017 | * [FDStackView](https://github.com/forkingdog/FDStackView) - 可以将 UIStackView 的最低支持版本拉低到 iOS6,无需配置,没有代码侵染,扔到工程里后直接用系统 UIStackView 的 API 即可,同时兼容 Storyboard. 1018 | * [MDIHorizontalSectionTableViewController](https://github.com/WeeTom/MDIHorizontalSectionTableViewController) - 根据产品需求开源了一个交互项目,可以理解为横向Section的TableView,section和cell同时支持拖拽,后续安卓版本也会开源出来. 1019 | * [JZNavigationExtension](https://github.com/JazysYu/JZNavigationExtension) - 多功能导航控制器,可以透明返回栏. 1020 | * [QuickRearrangeTableView](https://github.com/okla/QuickRearrangeTableView) - 基于 UITableView 的快速重排功能扩展子类。通过长按选定单元格然后滚动移动到指定位置. 1021 | * [uicollectionview-reordering](https://github.com/nshintio/uicollectionview-reordering) - UICollectionViews的拖拽(拖动、移动)效果,[实例教程](http://nshint.io/blog/2015/07/16/uicollectionviews-now-have-easy-reordering/). 1022 | * [LLNoDataView](https://github.com/LvJianfeng/LLNoDataView) - 超简单的空数据提示通用View支持UIScrollView、UITableView、UICollectionView、UIWebView. 1023 | * [XLPlainFlowLayout](https://github.com/HebeTienCoder/XLPlainFlowLayout) - 可以让UICollectionView的header也支持悬停效果,类似于tableView的Plain风格. 1024 | * [WMPageController](https://github.com/wangmchn/WMPageController) - 一个方便的 pageContrller 的控件,里面还包括滚动视图。 1025 | * [PSTCollectionView](https://github.com/steipete/PSTCollectionView) - PSTCollectionView. 1026 | * [LLRiseTabBar-iOS](https://github.com/lianleven/LLRiseTabBar-iOS) - 直接使用系统的特性实现的tabbar,比较简单. 1027 | * [MTMaterialDelete](https://github.com/MartinRGB/MTMaterialDelete) - 非常有趣的Material Design动画,动画删除表里面的单元格. 1028 | * [BusyNavigationBar](https://github.com/gmertk/BusyNavigationBar) - 进度条式NavigationBar导航条. 1029 | * [LGSettingView](https://github.com/LiGoEX/LGSettingView) - LGSettingView仅需三句代码即可快速集成设置界面,免去每次开发新应用都要重新布置设置界面的烦恼. 1030 | * [微博cell自动布局](http://code.cocoachina.com/view/129212) - 使用autoLayout对微博的cell进行自动布局,自适应cell的高度. 1031 | * [TreeTableView](https://github.com/TyroneWing/TreeTableView) - ZYTreeTableView:TreeView 模仿好友列表的实现方式. 1032 | * [ZWSlideViewController](https://github.com/squarezw/ZWSlideViewController) - ZWSlideViewController多页滑动视图控制器(类似新闻类门户APP),可以用最简单的继承方法使用,也可以不用继承,只用菜单或主视图页面,可实现丰富的定制,可以使用在多种不同形态的APP下,还可以将其做为多页或多图的滑动介绍. 1033 | * [XWCatergoryView](https://github.com/wazrx/XWCatergoryView) - 一个轻量级的顶部分类视图控件,只需要通过简单的设置,你就可以快速集成该控件, 控件目前暂时有底部横条移动,椭圆背景移动,文字缩放,文字颜色变化,和文字颜色渐变五种效果,五种效果可以叠加使用也可以单一使用。[实现教程](http://www.jianshu.com/p/274d19f97564) 1034 | * [jingDongFenLei](http://code.cocoachina.com/view/129675) - 简单仿写京东分类中的多级分类页面. 1035 | * [RKSwipeBetweenViewControllers](https://github.com/cwRichardKim/RKSwipeBetweenViewControllers) - 页面滑动和标签选项卡类库. 1036 | * [FriendSearch](http://www.cocoachina.com/ios/20160407/15870.html) - 两种UI的搜索,搜索的算法可以满足中英文互搜,联想搜索等,其中还包含对一组数据自动进行按字母分组等功能. 1037 | * [YX_UITableView_IN_UITableView](https://github.com/yixiangboy/YX_UITableView_IN_UITableView) - UITableview嵌套UITableView案例实践(仿淘宝商品详情页实现),[项目讲解](http://blog.csdn.net/yixiangboy/article/details/51009010). 1038 | * [TYPagerController](https://github.com/12207480/TYPagerController) - 简单,支持定制,页面控制器,可以滚动内容和标题栏,包含多种style. 1039 | * [YZHeaderScaleImage](https://github.com/iThinkerYZ/YZHeaderScaleImage) - 一行代码快速集成tableView中头部缩放视图. 1040 | * [ExpandTableView](https://github.com/zhengwenming/ExpandTableView) - 可折叠展开的tableView,QQ好友分组列表. 1041 | * [SwipeTableView](https://github.com/Roylee-ML/SwipeTableView) - Both scroll horizontal and vertical for segment scrollview which have a same header. — 类似半糖、美丽说主页与QQ音乐歌曲列表布局效果,实现不同菜单的左右滑动切换,同时支持类似tableview的顶部工具栏悬停(既可以左右滑动,又可以上下滑动)。兼容下拉刷新,自定义 collectionview实现自适应 contentSize 还可实现瀑布流功能. 1042 | * [TableViewAnimationKit](https://github.com/alanwangmodify/TableViewAnimationKit) - TableView Animation ,move your tableView. 1043 | * [HVScrollView](https://github.com/SPStore/HVScrollView) - 这不是框架,只是3个示例程序,给大家提供一个实现这种布局的思路. 1044 | * [iOS开发的一些奇巧淫技1](http://www.jianshu.com/p/50b63a221f09) - TableView不显示没内容的Cell怎么办. 1045 | * [EHHorizontalSelectionView](https://github.com/josshad/EHHorizontalSelectionView) - Horizontal table view style controller. 1046 | * [YHListKit](https://github.com/ShannonChenCHN/YHListKit) - 一个轻量级的数据驱动列表框架. 1047 | * [LYEmptyView](https://github.com/yangli-dev/LYEmptyView) - iOS一行代码集成空白页面占位图(无数据、无网络占位图). 1048 | 1049 | #### TableView适配@ 1050 | 1051 | * [UITableView-FDTemplateLayoutCell](https://github.com/forkingdog/UITableView-FDTemplateLayoutCell) - UITableView-FDTemplateLayoutCell 是一个方便缓存 UITableViewCell 的高度的框架. 1052 | 1053 | #### CollectionView@ 1054 | 1055 | * [SFFocusViewLayout](https://github.com/fdzsergio/SFFocusViewLayout) - UICollectionView的高级使用方法哦SFFocusViewLayou. 1056 | * [RACollectionViewReorderableTripletLayout](https://github.com/ra1028/RACollectionViewReorderableTripletLayout) - 自定义的CollectionView布局,可以通过拖动进行cell的重新排序. 1057 | * [IGListKit](https://github.com/Instagram/IGListKit) - IGListKit是Instagram推出的新的UICollectionView框架,使用数据驱动,旨在创造一个更快更灵活的列表控件. 1058 | * [CollectionViewClassifyMenu](https://github.com/ChenYilong/CollectionViewClassifyMenu) - CollectionView做的两级菜单,可以折叠第二级菜单. 1059 | * [TableFlip](https://github.com/mergesort/TableFlip) - A simpler way to do cool UITableView animations. 1060 | * [DraggingSort](https://github.com/HelloYeah/DraggingSort) - 长按拖拽排序. 1061 | * [AppStore-Horizontal-Demo](https://github.com/liao3841054/AppStore-Horizontal-Demo) - 仿半糖App 个人中心可以横向滚动的 列表 UICollectionView UITableView UISrcrollView. 1062 | * [CollectionKit](https://github.com/SoySauceLab/CollectionKit) - A modern Swift framework for building reusable data-driven collection components. 1063 | * [CSStickyHeaderFlowLayout](https://github.com/jamztang/CSStickyHeaderFlowLayout) - CollectionView实现悬停的header. 1064 | 1065 | #### 下拉刷新@ 1066 | 1067 | * [MJRefresh](https://github.com/CoderMJLee/MJRefresh) - 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者上拉刷新功能。可以自定义上下拉刷新的文字说明。具体使用看“使用方法”. 1068 | * [XHRefreshControl](https://github.com/xhzengAIB/XHRefreshControl) - XHRefreshControl 是一款高扩展性、低耦合度的下拉刷新、上提加载更多的组件. 1069 | * [CBStoreHouseRefreshControl](https://github.com/coolbeet/CBStoreHouseRefreshControl) - 一个效果很酷炫的下拉刷新控件. 1070 | * [KYJellyPullToRefresh](https://github.com/KittenYang/KYJellyPullToRefresh) - 实现弹性物理效果的下拉刷新,神奇的贝塞尔曲线,配合UIDynamic写的一个拟物的下拉刷新动画. 1071 | * [MHYahooParallaxView](https://github.com/michaelhenry/MHYahooParallaxView) - 类似于Yahoo Weather和News Digest首屏的视差滚动. 1072 | * [SDRefreshView](https://github.com/gsdios/SDRefreshView) - 简单易用的上拉和下拉刷新(多版本细节适配). 1073 | * [可展开/收缩的下拉菜单--SvpplyTable](http://d.cocoachina.com/code/detail/237753) - 一个可展开可收缩的下拉菜单,类似Svpply app. 1074 | * [ODRefreshControl](https://github.com/Sephiroth87/ODRefreshControl) - 原iOS6上的橡皮糖刷新样式,很有意思。现在也很多大的 App 在用,比如虾米音乐和 QQ 客户端. 1075 | * [PullToMakeSoup](https://github.com/Yalantis/PullToMakeSoup) - PullToMakeSoup, 自定义下拉刷新的动画效果:煮饭, Yalantis新作. 1076 | * [TwitterCover](https://github.com/cyndibaby905/TwitterCover) - Twitter iOS客户端的下拉封面模糊效果. 1077 | * [Replace-iOS](https://github.com/MartinRGB/Replace-iOS) - Replace-iOS 让人眼前一亮的下拉刷新(iOS). 1078 | * [Animations](https://github.com/KittenYang/Animations) - 封装了一下,使用的时候只要两行代码。一些动画的飞机稿,都是一些单独分离出来的用于测试的子动画,现在统一归类一下. 1079 | * [PullToBounce](https://github.com/entotsu/PullToBounce) - 下拉刷新的动画 for UIScrollView. 1080 | * [WaterDropRefresh](https://github.com/li6185377/WaterDropRefresh) - 仿Path 水滴的下拉刷新效果 还有视差滚动. 1081 | * [ESRefreshControl](https://github.com/EnjoySR/ESRefreshControl) - 仿新浪微博、百度外卖、网易新闻下拉刷新样式Demo(仅供参考). 1082 | * [WaveRefresh](https://github.com/alienjun/AJWaveRefresh) - 下拉刷新水波纹动画. 1083 | * [DGElasticPullToRefresh](https://github.com/gontovnik/DGElasticPullToRefresh) - 是一款带有弹性效果的 iOS 下拉刷新组件. 1084 | * [BanTangAnimation](https://github.com/zangqilong198812/BanTangAnimation) - 半糖下拉刷新的原理。简单来说是利用CGGlyph,字符图形转换成cgpath,然后绘制strokeEnd动画。把timeoffset和scrolloffset结合就行了。 1085 | * [SURefresh](https://github.com/DaMingShen/SURefresh) - BOSS直聘APP下拉刷新动画实现,效果展示图-> [实现思路](http://mp.weixin.qq.com/s?__biz=MzA4ODk0NjY4NA==&mid=2701606115&idx=1&sn=98a486103668a30e16a328cbb529fe5e&scene=23&srcid=0728iIHfF3zMvIvdpqrIXCOK#rd)再复杂的动画都可以拆分成许多简单的动画组合起来,这个动画大概可以分成两个主体,我把它分别录制出来给大家看看. 1086 | * [TGRefreshOC](https://github.com/targetcloud/TGRefreshOC) - 弹簧、橡皮筋下拉刷新控件,类似QQ下拉刷新效果,同时支持其他样式. 1087 | * [GSRefresh](https://github.com/wxxsw/GSRefresh) - 完全自定义视图和动画的下拉刷新、上拉加载库,易扩展. 1088 | 1089 | #### 模糊效果@ 1090 | 1091 | * [FXBlurView](https://github.com/nicklockwood/FXBlurView) - 是一个UIView子类,支持iOS5.0以上版本,支持静态、动态模糊效果,继承与UIView的模糊特效. 1092 | * [VVBlurPresentation](https://github.com/onevcat/VVBlurPresentation) - 很简单易用的在原来viewconntroller基础上做模糊,然后present新的viewcontroller的. 1093 | * [UICustomActionSheet](https://github.com/pchernovolenko/UICustomActionSheet) - 通过模糊背景来着重强调与菜单相关的元素--对话框 里面已经收藏. 1094 | * [SABlurImageView](https://github.com/szk-atmosphere/SABlurImageView) - 支持渐变动画效果的图像模糊化类库。P.S. 与前几天推存类库 SAHistoryNavigationViewController 是同一位作者. 1095 | 1096 | #### AutoLayout@ 1097 | 1098 | * [Masonry](https://github.com/SnapKit/Masonry) - 非常赞-Masonry是一个轻量级的布局框架,拥有自己的描述语法,采用更优雅的链式语法封装自动布局,简洁明了并具有高可读性( [使用介绍1](http://adad184.com/2014/09/28/use-masonry-to-quick-solve-autolayout/) [使用介绍2](http://ios.jobbole.com/81483/)),[iOS自适应前段库-Masonry的使用](http://www.cocoachina.com/ios/20150702/12217.html)),[Masonry、Classy、ClassyLiveLayout介绍](http://www.jianshu.com/p/2ed5f7444900)。[使用DEMO](https://github.com/lcddhr/DDMasonryTest) 视图居中显示、子视图含边距、视图等距离摆放、计算ScrollView的contentsize. 1099 | * [Classy](https://github.com/ClassyKit/Classy) - Classy是一个能与UIKit无缝结合stylesheet(样式)系统。它借鉴CSS的思想,但引入新的语法和命名规则,[Classy官网](http://classy.as/getting-started/),[Masonry、Classy、ClassyLiveLayout介绍](http://www.jianshu.com/p/2ed5f7444900). 1100 | * [ClassyLiveLayout](https://github.com/olegam/ClassyLiveLayout) - ClassyLiveLayout通过结合Classy stylesheets与Masonry一起使用,能够在运行的模拟器中微调Auto Layout约束实时显示效果的工具,[Masonry、Classy、ClassyLiveLayout介绍](http://www.jianshu.com/p/2ed5f7444900). 1101 | * [PureLayout](https://github.com/PureLayout/PureLayout) - PureLayout 是 iOS & OS X Auto Layout 的终极 API——非常简单,又非常强大。PureLayout 通过一个全面的Auto Layout API 扩展了 UIView/NSView, NSArray 和 NSLayoutConstraint,仿照苹果自身的框架. 1102 | * [UIView-AutoLayout](https://github.com/smileyborg/UIView-AutoLayout) -Deprecated in favor of PureLayout, which includes OS X support:https://github.com/smileyborg/PureLayout. 1103 | * [UIView-FDCollapsibleConstraints](https://github.com/forkingdog/UIView-FDCollapsibleConstraints) - 一个AutoLayout辅助工具,最优雅的方式解决自动布局中子View的动态显示和隐藏的问题。第二个Demo模拟了一个经典的FlowLayout,任意一个元素隐藏时,底下的元素需要自动“顶”上来,配合这个扩展,你可以在IB里连一连,选一选,不用一行代码就能搞定. 1104 | * [Autolayout_Demo](https://github.com/luodezhao/Autolayout_Demo) - 在项目中用自动布局实现的类似抽屉效果. 1105 | * [当view隐藏的时候也隐藏其autolayout的NSLayoutAttribute](http://code.cocoachina.com/detail/320405/) - 当view隐藏的时候也隐藏其autolayout的NSLayoutAttribute,从而不用大量的代码工作. 1106 | * [SDAutoLayout](https://github.com/gsdios/SDAutoLayout) - AutoLayout 一行代码搞定自动布局!支持Cell、Label和Tableview高度自适应,致力于做最简单易用的AutoLayout库. 1107 | * [MyLinearLayout](https://github.com/youngsoft/MyLinearLayout) - MyLayout is a powerful iOS UI framework implemented by Objective-C. It integrates the functions with Android Layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,PathLayout,LayoutSizeClass to build your App 自动布局 UIView UITableView UICo… 1108 | * [WHC_AutoLayoutKit](https://github.com/netyouli/WHC_AutoLayoutKit) - Had better use the auto layout of open source framework,致力打造使用最简单功能最强大的自动布局开源库. 1109 | * [NerdyUI](https://github.com/nerdycat/NerdyUI) - 好用的快速布局 UI 库,适用于 iOS 8 及以上版本. 1110 | 1111 | #### 日历三方库@ 1112 | 1113 | * [TEAChart](https://github.com/xhacker/TEAChart) - xhacker/TEAChart 一个简洁的 iOS 图表库,支持柱状图、饼图以及日历等. 1114 | * [CVCalendar](https://github.com/Mozharovsky/CVCalendar) - 是一个方便开发者集成自定义日历视图到自己 iOS 应用的项目, 支持 Storyboard 和手动配置, 使用 CocoaPods 进行安装, 提供了丰富的 API 供开发者使用. 1115 | 1116 | #### 图表@ 1117 | 1118 | * [ios-charts](https://github.com/danielgindi/Charts) - 一款优秀 Android 图表开源库 MPAndroidChart 的 Swift 语言实现版(支持 Objective-C 和 Swift 调用)。缺省提供的示例代码为 Objective-C. 1119 | * [PNChart](https://github.com/kevinzhow/PNChart) - 国内开源作者,动态的图表. 1120 | * [JBChartView](https://github.com/Jawbone/JBChartView) - 基于iOS的用于线路和条形图的图表库. 1121 | * [XJYChart](https://github.com/JunyiXie/XJYChart) - 优秀的的图表框架。支持动画,点击,滑动,区域高亮. 1122 | * [YOChartImageKit](https://github.com/yasuoza/YOChartImageKit) - 支持在watchOS上绘制图表,看它最近更新挺勤快的,可以关注一下. 1123 | * [RealtimeGradientText](https://github.com/kevinzhow/RealtimeGradientText) - Fun With CALayer Mask 刚好今天开源了一个有趣的项目 RealtimeGradientText,所以也好聊一下 CALayer 的 Mask,[说明](http://blog.zhowkev.in/2015/07/06/fun-with-mask/). 1124 | * [XYPieChart](https://github.com/xyfeng/XYPieChart) - XYPieChart:饼状图, 饼图, 数据统计, 数据可视化,可以在图形上标注数据。效果十分漂亮,而且没有用到一张图片. 1125 | * [ZFChart](https://github.com/Zirkfied/ZFChart) - 模仿PNChart写的一个图表库,用法简单,暂时有柱状图,线状图,饼图三种类型,后续可能会更新新的类型. 1126 | * [JYRadarChart](https://github.com/johnnywjy/JYRadarChart) - 一个很赞的图表库. 1127 | 1128 | #### 颜色@ 1129 | 1130 | * [Colours](https://github.com/bennyguitar/Colours) - Colours–颜色库,包含100种预定义的颜色和方法. 1131 | * [DKNightVersion](https://github.com/Draveness/DKNightVersion) - Manage Colors, Integrate Night/Multiple Themes. 1132 | 1133 | #### scrollView@ 1134 | 1135 | * [SYParallaxScrollView](https://github.com/syjdev/SYParallaxScrollView) - Useful for Configure Horizontal Parallax Scroll. 1136 | 1137 | #### 对话交互@ 1138 | #### 隐藏与显示@ 1139 | 1140 | * [SlideTapBar](http://d.cocoachina.com/code/detail/286102) - 滚动栏菜单,向上滚动时隐藏tabbar,向下滚动马上显示tabbar. 1141 | * [FoldingTabBar.iOS](https://github.com/Yalantis/FoldingTabBar.iOS) - 可折叠Tab Bar和Tab Bar Controller. 1142 | * [KMNavigationBarTransition](https://github.com/MoZhouqi/KMNavigationBarTransition) - LTNavigationBar在右滑返回的时候NavigationBar显示都不完美,KMNavigationBarTransition一个用来统一管理导航栏转场以及当 push 或者 pop 的时候使动画效果更加顺滑的通用库,并且同时支持竖屏和横屏. 1143 | * [HYNavBarHidden](https://github.com/HelloYeah/HYNavBarHidden) - 导航条滚动透明,超简单好用的监听滚动,导航条渐隐的UI效果实现. 1144 | * [BLKFlexibleHeightBar](https://github.com/bryankeller/BLKFlexibleHeightBar) - 非常赞,是一个使导航栏高度可以动态变化的 UI 库。固定Header的效果库,一个拥有非常灵活高度的标题栏,可以为使用软件的用户提供更多的阅读和滑动空间,现在已经被众多app所采用. 1145 | * [JXT_iOS_Demos](https://github.com/kukumaluCN/JXT_iOS_Demos) - AboutNavigationBar:一些关于navigationBar的非常规的但是较为实用的操作,包括利用毛玻璃、动态透明、动态隐藏,以及头视图的动态缩放,并同时涉及了statusBar的动态设置(换色)。[教程](http://www.jianshu.com/p/b2585c37e14b). 1146 | * [NavigationBarScaleViewDemo](https://github.com/CoderJackyHuang/NavigationBarScaleViewDemo) - iOS导航条自由缩放头像效果。[原理剖析](http://www.henishuo.com/nav-photo-scale/). 1147 | 1148 | #### HUD与Toast@ 1149 | 1150 | * [MBProgressHUD](https://github.com/jdg/MBProgressHUD) - MBProgressHUD + Customizations. 1151 | * [SVProgressHUD](https://github.com/SVProgressHUD/SVProgressHUD) - 非常赞 SVProgressHUD的loading,如果你需要定制化的等待提示器,这个就是了(也许是最好的). 1152 | * [JDStatusBarNotification](https://github.com/calimarkus/JDStatusBarNotification) - 非常赞👍👍👍 的自定义顶部通知. 1153 | * [Toast](https://github.com/scalessec/Toast) - An Objective-C category that adds toast notifications to the UIView object class. 1154 | * [EBuyCommon](https://github.com/LvJianfeng/EBuyCommon) - 1.基于MBProgressHUD实现得图形加载提示方式,及其它标题方式提醒。2.弹窗. 1155 | * [WZDraggableSwitchHeaderView](https://github.com/wongzigii/WZDraggableSwitchHeaderView) - Show status for transition across viewControllers. 1156 | * [ProgressHUD](https://github.com/relatedcode/ProgressHUD) - ProgressHUD的loading,使用最简单. 1157 | * [MMProgressHUD](https://github.com/mutualmobile/MMProgressHUD) - 设置HUD出现和消失的方式(包括上下、左右、淡入淡出、放大缩小等等),设置HUD的内容(可以在HUD中加入帧动画、动态图片等等),设置HUD出现时的底部覆盖层颜色,等等。总而言之,这是一份集大成的HUD代码. 1158 | * [WSProgressHUD](https://github.com/devSC/WSProgressHUD) - 一个小巧精致的HUD,支持添加到自定义View上, 还有更多小细节. 1159 | * [PreLoader](https://github.com/liuzhiyi1992/PreLoader) - 一个很有意思的HUD loading ,通过运动污点和固定污点之间的粘黏动画吸引用户的眼球跟踪,能有效分散等待注意力。[PreLoader的实现讲解](http://www.cocoachina.com/ios/20160427/16029.html). 1160 | * [FillableLoaders](https://github.com/poolqf/FillableLoaders) - 自定义加载进度UI-Completely customizable progress based loaders drawn using custom CGPaths written in Swift :large_orange_diamond: 1161 | * [TopAlert](https://github.com/roycms/TopAlert) - 顶部提示View. 1162 | * [CMPopTipView](https://github.com/chrismiles/CMPopTipView) - 自定义气泡View提示框. 1163 | 1164 | #### 对话框@ 1165 | 1166 | * [SCLAlertView](https://github.com/dogo/SCLAlertView) - 有特色的对话框. 1167 | * [LCActionSheet](https://github.com/iTofu/LCActionSheet) - 一款简约而不失强大的 ActionSheet,微信和微博都采取了极其类似的样式. 1168 | * [WCAlertView](https://github.com/m1entus/WCAlertView) - 自定义的对话框. 1169 | * [STPopup](https://github.com/kevin0571/STPopup) - 提供了一个可在 iPhone 和 iPad 上使用的具有 UINavigationController 弹出效果的 STPopupController 类, 并能在 Storyboard 上很好的工作. 1170 | * [AMSmoothAlert](https://github.com/mtonio91/AMSmoothAlert) - 动画效果不错,最多star,但不支持arm64. 1171 | * [DQAlertView](https://github.com/dinhquan/DQAlertView) - 扁平化的样式不错. 1172 | * [HHAlertView](https://github.com/mrchenhao/HHAlertView) - 一个简易的alertview 有三种样式,有成功,失败,和警告三种样式,支持Delegate和block两种回调. 1173 | * [MJPopupViewController](https://github.com/martinjuhasz/MJPopupViewController) - 实现弹出视图的各种弹出和消失效果,包括淡入淡出(fade in,fade out),从屏幕上方飞进,下方飞出,从屏幕左方飞进,右方飞出等等效果,弹窗. 1174 | * [MMPopupView](https://github.com/adad184/MMPopupView) - 弹出框的基类组件(弹窗). 1175 | * [Menu](https://github.com/fengchuanxiang/Menu) - 项目中可能会用到的常用菜单,以后有时间会继续补充,弹窗. 1176 | * [EasyTipView](https://github.com/teodorpatras/EasyTipView) - 弹出提示框类及演示示例。同样地,API 简单、易用。好“轮子”,弹窗. 1177 | * [kxmenu](https://github.com/kolyvan/kxmenu) - kxmenu弹出菜单,点击视图上任意位置的按钮,会弹出一个菜单,并且有个小箭头指向点击的按钮,类似气泡视图。弹出的菜单位置会根据按钮的位置来进行调整. 1178 | * [QBPopupMenu](https://github.com/questbeat/QBPopupMenu) - QBPopupMenu弹出菜单,实现类似 UIMenuItem 的弹出菜单按钮。点击按钮,会弹出一个菜单,上面可以排列多个按钮。纯代码实现,不需要任何图片. 1179 | * [GMenuController](https://github.com/GIKICoder/GMenuController) - 具有和系统UIMenuController行为,交互一致的Menu弹出控件.相比UIMenuController.具有更加友好的使用方式. 支持MenuItem指定target.使用更加灵活,支持更改menuview 外观设置. 1180 | * [STModalDemo](https://github.com/zhenlintie/STModalDemo) - 弹出视图(通知,提示,选择,窗口). 1181 | * [TAOverlay](https://github.com/TaimurAyaz/TAOverlay) - TAOverlay可通过叠加层展示有用的信息,可自定义文本和背景色,添加阴影和模糊效果,以及更改字体大小或者用自定义图片替换页面上的icon. 1182 | * [UICustomActionSheet](https://github.com/pchernovolenko/UICustomActionSheet) - 通过模糊背景来着重强调与菜单相关的元素--模糊效果 里面已经收藏. 1183 | * [ActionSheetPicker-3.0](http://code.cocoachina.com/detail/232178) - 该项目是此前热门项目ActionSheetPicker的新版本,快速复制了iOS 8上的下拉 UIPickerView/ActionSheet功能. 1184 | * [MJAlertView](https://github.com/mayuur/MJAlertView) - 3D效果转场效果警示图--MJAlertView. 1185 | * [PSTAlertController](https://github.com/steipete/PSTAlertController) - 兼容 iOS7的 XXAlertController,接口跟UIAlertController 一模一样,做到高低版本通用. 1186 | * [PCLBlurEffectAlert.swfit](https://github.com/hryk224/PCLBlurEffectAlert) - 细节定制较丰富的弹出警报窗口组件. 1187 | * [GSAlert.swfit](https://github.com/wxxsw/GSAlert) - 苹果在iOS8推出了全新的UIAlertController,旧的UIAlertView和UIActionSheet渐渐被废弃,但如果你仍然支持iOS7系统,你将不得不写两套代码。GSAlert解决了这个问题. 1188 | * [SweetAlert-iOS](https://github.com/codestergit/SweetAlert-iOS) - SweetAlert-iOS 带动画效果弹窗对话框封装类. 1189 | * [CCActionSheet](https://github.com/maxmoo/CCActionSheet) - CCActionSheet:仿照微信朋友圈自定义actionsheet,一行代码即可使用. 1190 | * [CustomPopOverView](https://github.com/maltsugar/CustomPopOverView) - 自定义弹出视图,内容支持传一组菜单标题,也支持自定义view,或者自定义viewController,支持任意按钮触发,会显示在按钮底部,也支持切换按钮的对齐方式:左对齐、居中、右对齐. 1191 | * [TOActionSheet](https://github.com/TimOliver/TOActionSheet) - 是一个 iOS UI 控件,提供一个模态提示控制,类似于 UIActionSheet。不同于 UIActionSheet 的是,它可以深度重设主题,通过对每个按钮使用块来避免委托模式. 1192 | 1193 | #### Pop@ 1194 | 1195 | * [AMPopTip](https://github.com/andreamazz/AMPopTip) - 一个可以定义frame的带动画的popover. An animated popover that pops out a given frame, great for subtle UI tips and onboarding. 1196 | * [DXPopover](https://github.com/xiekw2010/DXPopover) - 很赞 DXPopover微信右上角的+点击展示列表效果,弹窗菜单。 A Popover mimic Facebook app popover using UIKit. 1197 | * [zhPopupController](https://github.com/snail-z/zhPopupController) - Popup your custom view is easy, support custom mask style, transition effects and gesture to drag. 1198 | * [GTSheet](https://github.com/gametimesf/GTSheet) - An easy to integrate solution for presenting UIViewControllers in a bottom sheet. 1199 | * [LewPopupViewController](https://github.com/pljhonglu/LewPopupViewController) - ios 弹出视图. 1200 | * [YCXMenuDemo_ObjC](https://github.com/Aster0id/YCXMenuDemo_ObjC) - `TCXMenu` is an easy-to-use menu. 1201 | * [PopMenu](https://github.com/xhzengAIB/PopMenu) - 用POP动画引擎写的Sina微博的Menu菜单. 1202 | * [XTPopView](https://github.com/summerxx27/XTPopView) - 一个易用的带箭头的View, 可以实现类似于微信添加好友那个View的效果 (包含Objective-C和Swift版本). 1203 | * [MLMOptionSelectView](https://github.com/MengLiMing/MLMOptionSelectView) - 弹出-选择-展示框. 1204 | * [LiquidFloatingActionButton](https://github.com/yoavlt/LiquidFloatingActionButton) - 卫星弹出菜单. 1205 | * [HyPopMenuView](https://github.com/wwdc14/HyPopMenuView) - 模仿新浪微博弹出菜单. 1206 | * [DOPScrollableActionSheet](https://github.com/mrhyh/DOPScrollableActionSheet) - Multi-row scrollable action sheet. 1207 | * [DropDownMenu](https://github.com/MartinLi841538513/DropDownMenu) - 仿美团下拉菜单,二级菜单. 1208 | 1209 | #### 通知相关@ 1210 | 1211 | * [JSQNotificationObserverKit](https://github.com/jessesquires/JSQNotificationObserverKit) - 一款轻量、易用的通知发送及响应框架类库。作者是知名开源项目 JSQMessagesViewController(Objective-C 版即时聊天)的作者 Jesse Squires. 1212 | * [TSMessages](https://github.com/KrauseFx/TSMessages) - 易于使用和定制的消息/通知,用于 iOS版Tweetbot. 1213 | * [CWStatusBarNotification](https://github.com/cezarywojcik/CWStatusBarNotification) - 酷炫的通知栏,多种通知样式,使用简单,非常赞👍 . 1214 | * [GLPubSub](https://github.com/Glow-Inc/GLPubSub) - 一个简短实用的 NSNotificationCenter 的封装. 1215 | * [JDStatusBarNotification](https://github.com/jaydee3/JDStatusBarNotification) - 在状态栏顶部显示通知。可以自定义颜色字体以及动画。支持进度显示以及显示状态指示器. 1216 | * [obito](https://github.com/jiajunhuang/obito) - an iOS notification service out of box. 1217 | 1218 | #### 状态栏@ 1219 | 1220 | * [MTStatusBarOverlay](https://github.com/myell0w/MTStatusBarOverlay) - MTStatusBarOverlay 是一个定制的 iOS 状态栏,用于覆盖系统默认的状态栏,类似 Reeder, Evernote and Google Mobile App。支持两种点击动作:1. 当用户点击状态栏时,状态栏会收缩,仅仅遮盖住状态栏右方的电池图标;2. 当用户点击状态栏时,一个有详细信息的视图会从系统状态栏中下拉出现. 1221 | 1222 | #### 导航栏@ 1223 | 1224 | * [WRNavigationBar](https://github.com/wangrui460/WRNavigationBar) - 超简单!!! 一行代码设置状态栏、导航栏按钮、标题、颜色、透明度,移动等. 1225 | * [AMScrollingNavbar](https://github.com/andreamazz/AMScrollingNavbar) - 一个可以上拉隐藏导航栏和下拉显示导航栏的框架. 1226 | * [JTNavigationController](https://github.com/JNTian/JTNavigationController) - 一个拥有更平滑的navigationBar切换动画的NavigationController. 1227 | * [NavigationController](https://github.com/Roxasora/RxWebViewController) - 实现类似微信的 webView 导航效果,包括进度条,左滑返回上个网页或者直接关闭,就像 UINavigationController. 1228 | * [LTNavigationBar](https://github.com/ltebean/LTNavigationBar) - 叠。[实现教程](http://tech.glowing.com/cn/change-uinavigationbar-backgroundcolor-dynamically/). 1229 | * [LSNavigationBarTransition](https://github.com/lsmakethebest/LSNavigationBarTransition) - 导航栏背景色可以统一设置,每一个控制器导航栏背景色还可以自己单独设置不影响统一设置的界面,采用自定义交互动画实现淘宝,京东等软件当下最流行的导航控制器效果,比其他实现方式每一个控制器都包装一个导航控制器性能更好,使用方法更贴合系统使用方法. 1230 | 1231 | #### 设置@ 1232 | 1233 | * [InAppSettingsKit](https://github.com/futuretap/InAppSettingsKit) - InAppSettingsKit 是一款功能强大的ios设置组件,可以满足各种各样的app设置需求. 1234 | 1235 | #### Switch@ 1236 | 1237 | * [JTMaterialSwitch](https://github.com/JunichiT/JTMaterialSwitch) - A Customizable Switch UI for iOS, Inspired from Google's Material Design. 1238 | * [LLSwitch](https://github.com/lilei644/LLSwitch) - 一个有趣的switch. 1239 | * [ViralSwitch](https://github.com/andreamazz/ViralSwitch) - A UISwitch that infects its superview with its tint color. 1240 | 1241 | #### Label@ 1242 | 1243 | * [YYAsyncLayer](https://github.com/ibireme/YYAsyncLayer) - iOS utility classes for asynchronous rendering and display. 1244 | * [PPCounter](https://github.com/jkpang/PPCounter) - 一款简单实用的数字加减动画,支持UILabel、UIButton显示. 1245 | 1246 | #### Search@ 1247 | 1248 | * [PYSearch](https://github.com/iphone5solo/PYSearch) - 非常赞 An elegant search controller for iOS. 1249 | * [search](https://github.com/mrhyh/search) - 搜索历史标签. 1250 | * [CYLSearchViewController](https://github.com/ChenYilong/CYLSearchViewController) - 模仿iPhone短信聊天里的搜索框样式,点击搜索后,搜索框平滑移动到导航栏上. 1251 | 1252 | #### 主题@ 1253 | 1254 | * [LEETheme](https://github.com/lixiang1994/LEETheme) - 优雅的主题管理库- 一行代码完成多样式切换. 1255 | * [PYTheme](https://github.com/iphone5solo/PYTheme) - PYTheme通过NSObject的分类实现使用简单的主题更换. 1256 | * [EasyTheme](https://github.com/JyHu/EasyTheme) - 支持动态主题更换,使用简单。 1257 | 1258 | #### 电影选座@ 1259 | 1260 | * [ZFSeatsSelection](https://github.com/ZFbaby/ZFSeatsSelection) - 高仿猫眼电影选座(选票)模块(High imitation opal film seat selection (vote) module). 1261 | * [FVSeatsPicker](https://github.com/Upliver/FVSeatsPicker) - FVSeatsPicker是一个高性能的选座框架,可以直接pod引入,使用时可以直接当做View添加到任何视图控件内部. 1262 | 1263 | #### 瀑布流@ 1264 | 1265 | * [CHTCollectionViewWaterfallLayout](https://github.com/chiahsien/CHTCollectionViewWaterfallLayout) - 赞 UICollectionViewLayout的一个子类,尽可能地模仿了UICollectionViewFlowLayout的用法,灵感来源于Pinterest,同时还兼容PSTCollectionView. 1266 | 1267 | #### 菜单@ 1268 | 1269 | * [JSDBanTangHomeDemo](https://github.com/JoySeeDog/JSDBanTangHomeDemo) - 真正的仿半塘首页效果,半糖首页核心技术解析. 1270 | * [HACursor](https://github.com/HAHAKea/HACursor) - 帮助开发者方便集成导航指示器,用于管理视图页面. 1271 | * [ZTPageController](https://github.com/wuzhentao/ZTPageController) - 模仿网易新闻和其他新闻样式做的一个菜单栏,栏中有各自的控制器。 不建议用VC做展示,具体可以参考我最近写的. 1272 | * [circle-menu](https://github.com/Ramotion/circle-menu) - 赞 一个不错的旋转点击菜单,类似于遥控器的上下左右中点击样式. 1273 | * [KYGooeyMenu](https://github.com/KittenYang/KYGooeyMenu) - KYGooeyMenu 是一个具有 Gooey Effects 带粘性的扇形菜单控件(卫星菜单、path). 1274 | * [DCPathButton](https://github.com/Tangdixi/DCPathButton) - Path,4.0的弹出菜单,呼出或者关闭菜单时,多个小图标会分别按照逆时针和顺时针的方向进行滚动. 1275 | * [类似美团的下拉选项](http://code4app.com/ios/%E7%B1%BB%E4%BC%BC%E7%BE%8E%E5%9B%A2%E7%9A%84%E4%B8%8B%E6%8B%89%E9%80%89%E9%A1%B9/538606d4933bf06e0a8b496e) - 类似于美团、大众点评的下拉菜单选项,code4app代码,评论代码有瑕疵. 1276 | 1277 | #### TabBar@ 1278 | 1279 | * [DLSlideView](https://github.com/agdsdl/DLSlideView) - DLSlideView对常见的顶部Tab页点击、滑动分页做了封装。 它使用基于ViewController的container特性(而不是scrollview)来管理各个子页面,保留原始的系统消息,没有隐患。 同时内存模型更优于使用scrollview的方式,理论上可以支持无限分页. 1280 | * [](https://github.com/NoCodeNoWife/LLRiseTabBar-iOS) - 仿淘宝闲鱼的TabBar. 1281 | 1282 | #### 小红点@ 1283 | 1284 | * [WZLBadge](https://github.com/weng1250/WZLBadge) - 小红点,Badge,支持横竖屏支持iOS5~iOS8允许高度定制化,包括“红点”的背景颜色,文字(字体大小、颜色),位置等。[说明](http://code.cocoachina.com/detail/316890/%E4%B8%80%E8%A1%8C%E4%BB%A3%E7%A0%81%E5%AE%9E%E7%8E%B0%E5%A4%9A%E9%A3%8E%E6%A0%BC%E7%9A%84%E6%8E%A8%E9%80%81%E5%B0%8F%E7%BA%A2%E7%82%B9/). 1285 | * [RKNotificationHub](https://github.com/cwRichardKim/RKNotificationHub) - 快速给 UIView 添加上炫酷的通知图标(Badge、红点、提示). 1286 | * [PPBadgeView](https://github.com/jkpang/PPBadgeView) - iOS自定义Badge组件, 支持UIView、UITabBarItem、UIBarButtonItem ,支持Objective-C/Swift双版本. 1287 | 1288 | #### page@ 1289 | 1290 | * [NinaPagerView](https://github.com/RamWire/NinaPagerView) - 一行代码搞定顶部菜单栏。类似网易新闻、今日头条、虎扑看球等app做的一个顶部菜单栏,每栏中有独立的控制器,可自己定制. 1291 | * [PageMenu](https://github.com/uacaps/PageMenu) - A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) [⚠️已失去维护] 1292 | * [MXSegmentedPager](https://github.com/maxep/MXSegmentedPager) - 分页滚动,多个分页的pageController效果. 1293 | * [ZJScrollPageView](https://github.com/jasnig/ZJScrollPageView) - 网易新闻, 腾讯视频, 头条 等首页的滑块视图联动的效果OC版的简单方便的集成. 1294 | * [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) - 一个比较好用的第三方分段控制器. 1295 | * [XHTwitterPaggingViewer](https://github.com/xhzengAIB/XHTwitterPaggingViewer) - A twitter like navigation bar, page viewer. 1296 | * [SPPage](https://github.com/xichen744/SPPage) - 高性能PageController. 1297 | * [SCSafariPageController](https://github.com/stefanceriu/SCSafariPageController) - A page view controller component that reproduces Mobile Safari's tab switching behavior. 1298 | 1299 | #### 轮播@ 1300 | 1301 | * [YJBannerView](https://github.com/stackhou/YJBannerView.git) - 轻量级高性能轮播Banner组件,使用方法简单,可高度自定义化,超级赞 1302 | * [iCarousel](https://github.com/nicklockwood/iCarousel) - 非常赞 作者是英国 Charcoal Design 公司的创始人, 开源领域的贡献颇为卓著, 这个项目就是其中之一, 这是一款可以在 iOS 上实现旋转木马视图切换效果的第三方控件, 并提供多种切换效果。是一个使用简单、高度自定义的多类型视图切换的控件,支持iOS/Mac OS、ARC & Thread Safety; A simple, highly customisable, data-driven 3D carousel for iOS and Mac OS 1303 | * [SDCycleScrollView](https://github.com/gsdios/SDCycleScrollView) - 无限循环自动图片轮播器(一步设置即可使用). 1304 | * [HYBLoopScrollView](https://github.com/CoderJackyHuang/HYBLoopScrollView) - 一行代码接入轮播组件,自带图片下载、缓存相关功能,无任何第三方依赖、轻量级组件. 1305 | 1306 | #### 选择器@ 1307 | 1308 | * [ActionSheetPicker-3.0](https://github.com/skywinder/ActionSheetPicker-3.0) - Quickly reproduce the dropdown UIPickerView / ActionSheet functionality on iOS. 1309 | * [STPickerView](https://github.com/STShenZhaoliang/STPickerView) - 一个多功能的选择器,有城市选择,日期选择和单数组源自定的功能,方便大家的使用,低耦合,易扩展. 1310 | * [ASDayPicker](http://code.cocoachina.com/detail/226543) - 适用于iOS (iPhone)的日期选择器(时间选择器),类似于Calendar app的周视图. 1311 | * [HSDatePickerViewController](https://github.com/EmilYo/HSDatePickerViewController) - 带有Dropbox Mailbox感觉的时间日期选择器(时间选择器)。启动是背景被模糊化。界面也是主流的扁平化风格. 1312 | * [HZQDatePickerView](https://github.com/huzhiqin/HZQDatePickerView) - 自定义时间选择器(日期选择器),包括开始日期和结束日期两种类型. 1313 | * [CFCityPickerVC](https://github.com/CharlinFeng/CFCityPickerVC) - 城市选取控制器. 1314 | * [YMCitySelect](https://github.com/mrhyh/YMCitySelect) - 重量级城市选择框架,类似美团、猫眼电影、美团外卖、百度外卖、百度糯米等团购类app城市选择界面. 1315 | * [JFCitySelector](https://github.com/zhifenx/JFCitySelector) -(仿美团)简单好用的城市选择器,三行代码搞定. 1316 | * [PGDatePicker](https://github.com/xiaozhuxiong121/PGDatePicker) - 日期选择器,支持年、年月、年月日、年月日时分、年月日时分秒、时分、时分秒、月日周 时分等. 1317 | * [UsefulPickerView](https://github.com/jasnig/UsefulPickerView) - 可以简单快速实现点击TextField或者按钮弹出单列, 多列, 多列关联,城市选择, 日期选择的pickerView. 1318 | 1319 | #### 购物车@ 1320 | 1321 | * [ShoppingCartExample](https://github.com/gbaldera/ShoppingCartExample) - 购物车最多star demo. 1322 | * [shoppingCart1](https://github.com/yhangeline/shoppingCart) - 仿美团购物车效果。 1323 | * [ZFShoppingCart](https://github.com/WZF-Fei/ZFShoppingCart) - 仿照美团外卖加入购物车的动态效果. 1324 | * [shoppingCart2](https://github.com/spxvszero/ShoppingCart) - 一个购物车demo,包含购物车动画效果、购物车多选、删除、编辑等功能. 1325 | * [shoppingCart-demo](https://github.com/DrYrw/shoppingCart-demo) - 一个简单的购物车功能实现demo. 1326 | * [iOS_oShoppingCart_Demo](https://github.com/ZyZwei/iOS_oShoppingCart_Demo) - 简单实现购物车常见的筛选功能. 1327 | * [XNQShoppingTrolley](https://github.com/342261733/XNQShoppingTrolley) - 购物车功能 基本功能仿照淘宝的购物车. 1328 | * [ShoppingDemo](https://github.com/Zhangjingwang1993/ShoppingDemo) - iOS仿美团外卖饿了吗App点餐动画,购物车. 1329 | * [shopCarDemobyCX](http://code.cocoachina.com/view/129430) - shopCarDemobyCX一个简易购物车效果,最重要的是可以分单结算,分单个商品结算,代理是主要技术. 1330 | * [MVVM KVO购物车](http://code.cocoachina.com/view/128713) - MVVM KVO 购物车(一处计算总价钱). 1331 | * [CartDemo](https://github.com/LQQZYY/CartDemo) - CartDemo比较完整的购物车界面及逻辑,商品展示,多选,单选,全选及滑动删除,价格计算. 1332 | 1333 | #### 引导@ 1334 | 1335 | * [Onboard](https://github.com/mamaral/Onboard) - 一个iOS框架,轻松创建一个美丽和吸引人的使用引导,只需行代码,非常赞👍👍,同时支持Swift. 1336 | * [JMHoledView](https://github.com/leverdeterre/JMHoledView) - 一个不错的使用引导库,使用View实现. 1337 | * [TNTutorialManager](https://github.com/Tawa/TNTutorialManager) - 内嵌的App使用引导库. 1338 | 1339 | #### 按钮@ 1340 | 1341 | * [DownloadButton](https://github.com/PavelKatunin/DownloadButton) - Customizable App Store style download button. 1342 | 1343 | #### 类3D@ 1344 | 1345 | * [SphereView](https://github.com/heroims/SphereView) - 球形3D 标签 类似网易订阅 可放大 缩小 滑动 点击自动旋转. 1346 | 1347 | #### 进度@ 1348 | 1349 | * [NVActivityIndicatorView](https://github.com/ninjaprox/NVActivityIndicatorView) - loading 进度条动画,有20-30多种,非常👍👍👍 . 1350 | * [DGActivityIndicatorView](https://github.com/gontovnik/DGActivityIndicatorView) - DGActivityIndicatorView is a great way to make loading spinners in your application look nicer. It contains 32 different indicator view styles. 1351 | * [M13ProgressSuite](https://github.com/Marxon13/M13ProgressSuite) - 含有许多工具套件,以在iOS上显示进度信息. 1352 | * [YLProgressBar](https://github.com/yannickl/YLProgressBar) - UIProgressView replacement with an highly and fully customizable animated progress bar in pure Core Graphics. 1353 | * [NJKWebViewProgress](https://github.com/ninjinkun/NJKWebViewProgress) - 很赞 一个 UIWebView 的进度条接口库,UIWebView 本身是不提供进度条的。 1354 | * [UAProgressView](https://github.com/UrbanApps/UAProgressView) - 很赞 的一个进度指示View. 1355 | * [AwesomeMenu](https://github.com/levey/AwesomeMenu) - 最多人用的Path菜单. 1356 | * [ZFProgressView](https://github.com/WZF-Fei/ZFProgressView) - A simple digit progress view.(version1.3 使用GCD定时器代替NSTimer,避免内存泄露问题). 1357 | * [WaveLoadingView](https://github.com/liuzhiyi1992/WaveLoadingView) - iOS 唯一完美的波浪进度加载指示器,[实现说明](http://zyden.vicp.cc/waveloadingindicator/). 1358 | * [JZMultiChoicesCircleButton](https://github.com/JustinFincher/JZMultiChoicesCircleButton) - 三维多选按钮. 1359 | * [ASProgressPopUpView](https://github.com/alskipp/ASProgressPopUpView) - 弹出的进度条显示进度. 1360 | * [TwitterPaggingViewer](https://github.com/xhzengAIB/XHTwitterPaggingViewer) - 多个Tableview,左右滑动. 1361 | * [CircularProgressControl](https://github.com/carantes/CircularProgressControl) - Circular Progress Control using CAShapeLayer ,环形进度控制条. 1362 | * [SDProgressView](https://github.com/gsdios/SDProgressView) - 简便美观的进度指示器,此系列共有六种样式的进度指示器. 1363 | * [LoopProgressDemo](https://github.com/saitjr/STLoopProgressView) - 环形渐变进度条,[环形渐变进度条实现](http://www.superqq.com/blog/2015/08/12/realization-circular-gradient-progress/). 1364 | * [MDCSwipeToChoose](https://github.com/modocache/MDCSwipeToChoose) - MDCSwipeToChoose可简单地添加滑动手势来调用UIView,并使用该行为提供了一个组件以创建类似Tinder app的like或者dislike界面的轻扫。基于轻扫的方向,你可以决定执行什么样的行为,并且你可以自定义文本颜色和图片。该项目适用于教学用的抽认卡、图片查看器以及其他等. 1365 | * [MediumScrollFullScreen](https://github.com/pixyzehn/MediumScrollFullScreen) - Medium的可扩展滚动页面,上下滚动时,全屏显示内容,并自然消隐上下菜单。由此项目感知,作者是一位很注重细节的开发者,他的另外[几个菜单类项目](https://github.com/pixyzehn)也都不错,值得参考,比如:PathMenu, MediumMenu 等. 1366 | * [today extension](http://adad184.com/2014/10/29/2014-10-29-how-to-setup-today-extension-programmatically/) - 用纯代码构建一个Widget(today extension). 1367 | * [PDTSimpleCalendar](https://github.com/jivesoftware/PDTSimpleCalendar) - 是iOS最棒的日历组件了。你可以在各个方面对它进行定制,无论是运行逻辑还是外观方面. 1368 | * [ImagePickerSheetController](https://github.com/larcus94/ImagePickerSheetController) - 图片或视频选择器(可多选)组件及其示例项目. 1369 | * [ImagePickerSheet](https://github.com/larcus94/ImagePickerSheetController) - 图片或视频选择器(可多选)组件及其示例项目. 1370 | * [BLEProgressView](https://github.com/blueeee/BLEProgressView) - 使用pop实现动画的进度条. 1371 | * [ZZCircleProgress](https://github.com/zhouxing5311/ZZCircleProgress) - draw rect实现的圆形进度条。可以使用部分圆弧当做整个进度条,并可以随意设置起始角度及减少的圆弧角度大小. 1372 | * [BubbleTransition](https://github.com/andreamazz/BubbleTransition) - 以气泡膨胀和缩小的动画效果来显示和移除 controller,Uber的就是这种取消操作的方式. 1373 | * [KYFloatingBubble](https://github.com/KittenYang/KYFloatingBubble) - 类似iOS7中Game Center浮动气泡的效果. 1374 | * [DKNightVersion](https://github.com/Draveness/DKNightVersion) - DKNightVersion 是一个支持夜间模式切换的框架. 1375 | * [EasyUIControl](https://github.com/sx1989827/EasyUIControl) - 一个可以简化界面ui的控件框架. 1376 | * [QQBtn](https://github.com/ZhongTaoTian/QQBtn) - 仿QQ未读消息弹性按钮动画,达到和手机QQ未读信息一样的动画效果,效果基本实现. 1377 | * [TZStackView](https://github.com/tomvanzummeren/TZStackView) - OS 9 UIStackView 功能模拟实现于 iOS 7/ iOS 8 内. 1378 | * [Ruler](https://github.com/nixzhu/Ruler) - 尺子. 1379 | * [HUMSlider](https://github.com/justhum/HUMSlider) - HUMSlider是一款能够自动显示刻度记号的滑竿,滑动到某处,该处的刻度会自动上升,两边还能配置图像。支持代码或storyboard中实现. 1380 | * [3DTouchDemo](https://github.com/luzefeng/3DTouchDemo) - 详细介绍了每个参数的含义和3Dtouch的入口,保证包学包会. 1381 | * [3DTouchSample](https://github.com/RichardLeung/3DTouchSample) - 3D-Touch的功能分为两个部分:Shortcut和Preview. 1382 | * [SBShortcutMenuSimulator](https://github.com/DeskConnect/SBShortcutMenuSimulator) - 教你如何在模拟器上测试 3D Touch 功能. 1383 | * [仿LOL滚动视图](http://code.cocoachina.com/view/128287) - 仿LOL滚动视图. 1384 | * [答题选择切换页](http://code.cocoachina.com/view/128281) - 将scrollview和tableview封装在一起,在初始化的时候简单的将数据带上,就可以一页一页的左右来回滑动. 1385 | * [SCTrelloNavigation](https://github.com/SergioChan/SCTrelloNavigation) - 类似trello的导航动效控件实现. 1386 | * [RGCategoryView](https://github.com/refinemobi/RGCategoryView) - 仿了个苏宁易购的分类页面. 1387 | * [VBFPopFlatButton](https://github.com/victorBaro/VBFPopFlatButton) - 通过几条线段实现的非常Q萌的动画按钮效果. 1388 | * [LNPopupController](https://github.com/LeoNatan/LNPopupController) - AppleMusic式pop up,弹出是页面,可以上下拉动. 1389 | * [DGRunkeeperSwitch](https://github.com/gontovnik/DGRunkeeperSwitch/) - 动画segment,节选器. 1390 | * [DynamicMaskSegmentSwitch](https://github.com/KittenYang/DynamicMaskSegmentSwitch) - 一个简单有趣的 SegmentedControl 节选器. 1391 | * [YXFilmSelectView](https://github.com/yixiangboy/YXFilmSelectView) - 仿造时光网选择电影票的UI而开发的一个自定义View. 1392 | * [FJTagCollectionView](http://code.cocoachina.com/view/129152) - 标签(适配宽度). 1393 | * [DFTimelineView](https://github.com/anyunzhong/DFTimelineView) - DFTimelineView仿微信朋友圈 时间轴. 1394 | * [HYBImageCliped](https://github.com/CoderJackyHuang/HYBImageCliped) - 可给任意继承UIView的控件添加任意多个圆角、可根据颜色生成图片且可带任意个圆角、给UIButton设置不同状态下的图片且可带任意圆角、给UIImageView设置任意图片,支持带圆角或者直接生成圆形. 1395 | * [StackViewController](https://github.com/seedco/StackViewController) - 方便 iOS 开发者使用 UIStackView 构建表单或其它静态内容视图. 1396 | * [LLBootstrapButton](https://github.com/lilei644/LLBootstrapButton) - Bootstrap 3.0扁平化风格按钮,自带图标,一句代码直接调用. 1397 | * [JMRoundedCorner](https://github.com/raozhizhen/JMRoundedCorner) - UIView设置不触发离屏渲染的圆角. 1398 | * [KNCirclePercentView](https://github.com/knn90/KNCirclePercentView) - 一个自定义动画的圆形进度View. 1399 | 1400 | #### 其他UI@ 1401 | 1402 | * [drawablebubble](https://github.com/KittenYang/KYCuteView) - QQ中未读气泡拖拽消失的实现分析[分析文章](http://kittenyang.com/drawablebubble/). 1403 | * [PPNumberButton](https://github.com/jkpang/PPNumberButton) - 高仿京东淘宝商品数量的加减按钮,可定制程度较高,使用简单. 1404 | * [YJFavorEmitter](https://github.com/SplashZ/YJFavorEmitter) - 一个非常好用的点赞粒子发射器. 1405 | * [BEMCheckBox](https://github.com/Boris-Em/BEMCheckBox) - BEMCheckBox 是一个用于 iOS 应用上构建漂亮, 高度可定制化动画效果的复选框类库, 最低支持到 iOS 7 系统, 有多种不同风格的动画效果可供选择. 1406 | * [BFPaperCheckbox](https://github.com/bfeher/BFPaperCheckbox) - iOS Checkboxes inspired by Google's Paper Material Design. 1407 | * [GMenuController](https://github.com/GIKICoder/GMenuController) - 具有和UIMenuController一致的UI 与交互行为. menuItem可指定target. 可定制化UI.对外API与原生UIMenuController 一致. 1408 | * [shopCartDemo](https://github.com/wangluhui/shopCartDemo) - 购物车Demo. 1409 | 1410 | #### 工具@ 1411 | #### 综合@ 1412 | * [sstoolkit](https://github.com/soffes/sstoolkit) - 一个不错的工具包,提供各种比如编码、加密、字符串处理等等东西,还提供了一些不错的自定义控件,并且文档非常齐全 1413 | 1414 | #### 提醒用户评分@ 1415 | 1416 | * [iRate](https://github.com/nicklockwood/iRate) - 问卷调查. 1417 | * [UAAppReviewManager](https://github.com/urbanapps/UAAppReviewManager) - 一个轻量级的,易用的App评分提醒库. 1418 | * [appirater](https://github.com/arashpayan/appirater) - 用于提醒用户给你的 APP 打分的工具. 1419 | 1420 | #### 压缩解压@ 1421 | 1422 | * [ZipArchive](https://github.com/ZipArchive/ZipArchive) - 适用iOS和OS X的解压库. 1423 | 1424 | #### Category@ 1425 | 1426 | * [FlatUIKit](https://github.com/Grouper/FlatUIKit) - 针对Foundation的扩展,非常👍 A collection of awesome flat UI components for iOS. 1427 | * [JKCategories](https://github.com/shaojiankui/JKCategories) - 非常棒👍👍👍 的分类集合,包含Foundation,UIKit,CoreData,QuartzCore,CoreLocation,MapKit Etc等等. 1428 | * [UIScrollView-InfiniteScroll](https://github.com/pronebird/UIScrollView-InfiniteScroll) - 滚动视图无限滚动分类 UIScrollView infinite scroll category. 1429 | * [LTNavigationBar](https://github.com/ltebean/LTNavigationBar) - 允许改变导航栏appearance dynamically的分类 UINavigationBar Category which allows you to change its appearance dynamically. 1430 | * [BlocksKit](https://github.com/zwaldowski/BlocksKit) - block框架,为 OC 常用类提供了强大的 Block 语法支持,使得编写 OC 代码变得舒适、快速、优雅。 The Objective-C block utilities you always wish you had. 1431 | * [YYCategories](https://github.com/ibireme/YYCategories) - 功能丰富的 Category 类型工具库. 1432 | * [BFKit](https://github.com/FabrizioBrancati/BFKit) - 一个非常不错的分类集合工具库,大幅提高开发效率.同时包含Swift版本. 1433 | * [NullSafe](https://github.com/nicklockwood/NullSafe) - NullSafe is a simple category on NSNull that returns nil for any unrecognised messages instead of throwing an exception pod 'NullSafe', '~> 1.2.2' 用于防止项目中数组为空时越界访问崩溃. 1434 | * [iOS-Categories](https://github.com/shaojiankui/IOS-Categories) - 收集了许多有助于开发的iOS扩展,各种category分类. 1435 | * [cocoacats](http://cocoacats.com/) -【分类汇总】里面收集了 iOS 中常用的分类文件,一直在更新. 1436 | * [libextobjc](https://github.com/jspahrsummers/libextobjc - Libextobjc是一个非常强大的Objective-C库的扩展,为Objective-C提供诸如Safe categories、Concrete protocols、简单和安全的key paths以及简单使用block中的弱变量等功能。libextobjc非常模块化,只需要一个或者两个依赖就能使用大部分类和模块. 1437 | * [SFJumpToLine](https://github.com/sferrini/SFJumpToLine) - Xcode plugin that moves the instruction pointer to the selected line. 1438 | * [DTFoundation](https://github.com/Cocoanetics/DTFoundation) - 标准工具类和分类 - Standard toolset classes and categories. 1439 | 1440 | #### 代码片@ 1441 | 1442 | * [snippets](https://github.com/Xcode-Snippets/Objective-C) - A few code snippets from my Xcode arsenal. 1443 | 1444 | #### Color@ 1445 | 1446 | * [Chameleon](https://github.com/ViccAlexander/Chameleon) - Chameleon是一个非常棒👍👍👍iOS的色彩框架。它运用现代化flat color将UIColor扩展地非常美观。我们还可以通过它运用自定义颜色创建调色板。它还有很多功用,请浏览readme。同时支持Swift. 1447 | 1448 | #### Github相关@ 1449 | 1450 | * [http://shields.io/](http://shields.io/) - 开源项目的徽章. 1451 | * [Classroom for GitHub](https://github.com/education/classroom) - Classroom for GitHub 可以自动创建代码仓库和访问控制,可以让老师很方便的在 GitHub 上发布代码任务和收集作业. 1452 | * [Hexo](https://github.com/hexojs/hexo) - 通过Github Pages写博客的Node.js框架. 1453 | * [octicons](https://github.com/github/octicons) - GitHub的 图标字体. 1454 | * [markdown-editor](https://github.com/jbt/markdown-editor) - GitHub味道的markdown编辑器. 1455 | * [backup-utils](https://github.com/github/backup-utils) - backup-utils 是 Github 企业备份工具,它包括一些备份和恢复工具。这些备份工具实现了多项用于备份主机的高级功能,还原功能也已经包括在 GitHub Enterprise 中. 1456 | * [gistblog](https://github.com/jazzychad/gistblog) -gistblog 是一个简单的 Node.js 应用,使用 Github 的认证系统和 gist 提供的后台存储来实现博客的功能。可使用 Markdown 编写博客. 1457 | * [openspace](https://github.com/EverythingMe/openspace) -Openspace 是一个用来将你在 Github 上的项目汇总显示在一个网页里的应用. 1458 | * [primer](https://github.com/primer/primer) -Primer 是 Github 工具包,用于 Github 前端设计. 1459 | * [https://gitter.im](https://gitter.im) - 专门给GitHub开源项目或者开源作者提供的聊天软件. 1460 | * [boennemann - badges](https://github.com/boennemann/badges) - 各种徽章. 1461 | * [GitTorrent](https://github.com/cjb/GitTorrent) - The Decentralization of GitHub. 1462 | 1463 | #### 键盘@ 1464 | 1465 | * [IQKeyboardManager](https://github.com/hackiftekhar/IQKeyboardManager) - 处理键盘事件强大的库,有OC和Swift版本,纯代码、Storyboard和Xib都适用. 1466 | * [YYKeyboardManager](https://github.com/ibireme/YYKeyboardManager) - iOS 键盘监听管理工具. 1467 | 1468 | #### 文本@ 1469 | #### 文本输入@ 1470 | 1471 | * [GrowingTextView](https://github.com/HansPinckaers/GrowingTextView) - 一个非常棒的UITextView库. 1472 | * [JVFloatLabeledTextField](https://github.com/jverdi/JVFloatLabeledTextField) - 作者是 Thumb Labs 的联合创始人, JVFloatLabeledTextField 是 UITextField 的子类, 主要实现输入框标签浮动效果, 创作灵感来自 Dribbble, 已出现多个移植版本 UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users 1473 | * [GBigbang](https://github.com/GIKICoder/GBigbang) - 一个分词功能组件/大爆炸/tagFlowView. 1474 | * [PowerMode](https://github.com/younatics/PowerMode) - 一个很酷的文本输入框. 1475 | * [Stryng](https://github.com/BalestraPatrick/Stryng) - Swift strings taken to a whole new syntax level. 1476 | * [CMInputView](https://github.com/CrabMen/CMInputView) - UITextView输入时高度自适应. 1477 | * [WCLPassWordView](https://github.com/631106979/WCLPassWordView) - 实现类似微信和支付宝的密码输入框. 1478 | 1479 | #### 富文本@ 1480 | 1481 | * [YYText](https://github.com/ibireme/YYText) - 功能强大的 iOS 富文本框架. 1482 | * [SJAttributesFactory](https://github.com/changsanjiang/SJAttributesFactory) - 富文本编辑工厂, 让代码更清晰. 文本编辑, 高度计算等等... 简便操作, 让你爽到爆. 1483 | * [Shimmer](https://github.com/facebook/Shimmer) - BlingBling闪光效果,酷炫的Label的效果,可以用于加载等待提示,可以让view展示波光粼粼的效果. 1484 | * [GRichLabel ](https://github.com/GIKICoder/GRichLabel) - 支持选择复制.支持自定义选择弹出menu的富文本Label.内部使用YYAsyncLayer提供异步绘制任务. 1485 | * [TFHpple ](https://github.com/topfunky/hpple) - TFHpple解析html的轻量级框架. 1486 | * [RTLabel](https://github.com/honcheng/RTLabel) - RTLabel 基于UILabel类的拓展,能够支持Html标记的富文本显示,它是基于Core Text,因此也支持Core Text上的一些东西。32位,很久没有更新了. 1487 | * [RTLabel](https://github.com/bingxue314159/RTLabel) - 富文本,RTLabel支持64位. 1488 | * [DTCoreText](https://github.com/Cocoanetics/DTCoreText) - 可以解析HTML与CSS最终用CoreText绘制出来,通常用于在一些需要显示富文本的场景下代替低性能的UIWebView。[DTCoreText源码解析](http://blog.cnbang.net/tech/2630/). 1489 | * [TYAttributedLabel](https://github.com/12207480/TYAttributedLabel) - TYAttributedLabel。 简单易用的属性文本控件(无需了解CoreText),支持富文本,图文混排显示,支持添加链接,image和UIView控件,支持自定义排版显示. 1490 | * [TTTAttributedLabel](https://github.com/TTTAttributedLabel/TTTAttributedLabel) - 一个文字视图开源组件,是UILabel的替代元件,可以以简单的方式展现渲染的属性字符串。另外,还支持链接植入,不管是手动还是使用UIDataDetectorTypes自动把电话号码、事件、地址以及其他信息变成链接。[用TTTAttributedLabel创建变化丰富的UILabel](http://blog.csdn.net/prevention/article/details/9998575) - 网易新闻iOS版使用. 1491 | * [MLEmojiLabel](https://github.com/molon/MLEmojiLabel) - 自动识别网址、号码、邮箱、@、#话题#和表情的label。可以自定义自己的表情识别正则,和对应的表情图像。(默认是识别微信的表情符号),继承自TTTAttributedLabel,所以可以像label一样使用。label的特性全都有,使用起来更友好更方便. 1492 | * [FXLabel](https://github.com/nicklockwood/FXLabel) - FXLabel是一个功能强大使用简单的类库,通过提供一个子类改进了标准的UILabel组件,为字体增加了阴影、内阴影和渐变色等,可以被用在任何标准的UILabel中。FXLabel还提供了更多控件,可以对字体行距、字体间距等进行调整. 1493 | * [WFReader](https://github.com/TigerWf/WFReader) - 一款简单的coretext阅读器,支持文本选择、高亮以及字体大小选择等. 1494 | * [WPAttributedMarkup](https://github.com/nigelgrange/WPAttributedMarkup) - WPAttributedMarkup is a simple utility category that can be used to easily create an attributed string from text with markup tags and a style dictionary. 1495 | * [UUColorSwitch](https://github.com/zhangyu9050/UUColorSwitch) - Switch 开关动画效果,当打开开关时,Switch可实现平滑渲染过渡到父视图的效果. 1496 | * [UITextViewDIYEmojiExample](https://github.com/zekunyan/UITextViewDIYEmojiExample) - [UITextView编辑时插入自定义表情-简单的图文混编](http://tutuge.me/2015/03/07/UITextView%E7%BC%96%E8%BE%91%E6%97%B6%E6%8F%92%E5%85%A5%E8%87%AA%E5%AE%9A%E4%B9%89%E8%A1%A8%E6%83%85-%E7%AE%80%E5%8D%95%E7%9A%84%E5%9B%BE%E6%96%87%E6%B7%B7%E7%BC%96/). 1497 | * [MMMarkdown](https://github.com/mdiep/MMMarkdown) - 一个Objective-C的静态库,用于将Markdown语法转换换为HTML. 1498 | * [ZSSRichTextEditor](https://github.com/nnhubbard/ZSSRichTextEditor) - 适用于iOS的富文本WYSIWYG编辑器,支持语法高亮和源码查看。ZSSRichTextEditor包含所有WYSIWYG标准的编辑器工具. 1499 | * [CSGrowingTextView](https://github.com/cloverstudio/CSGrowingTextView) - 用作即时通讯文本框和评论文本框使用,可以显示多行输入. 1500 | * [MarkdownTextView](https://github.com/indragiek/MarkdownTextView) - 显示Markdown的TextView. 1501 | * [高仿微信限定行数文字内容](http://d.cocoachina.com/code/detail/300299) - 采用Autolayout高仿微信纯文字限定行数. 1502 | * [FuriganaTextView](https://github.com/lingochamp/FuriganaTextView) - 实现复杂的日文韩文排版. 1503 | * [ParkedTextField](https://github.com/gmertk/ParkedTextField) - 带固定文本的输入组件. 1504 | * [GJCFCoreText](https://github.com/zyprosoft/GJCFCoreText) - 图文混排. 1505 | * [AttributedLabel](https://github.com/KyoheiG3/AttributedLabel) - 显示性能数量级 UILabel 的 AttributedLabel。无畏无惧、挑战权威. 1506 | * [FFLabel](https://github.com/liufan321/FFLabel) - 自动检测 URLs, @username, #topic# 等关链词(提供响应扩展)。实用的标签文本小组件. 1507 | * [TextFieldEffects](https://github.com/raulriera/TextFieldEffects) - 标准的UITextField有些枯燥么?来认识一下TextFieldEffects吧!废话不多说,只要看几个例子,是啊,都是些简单的dropin控制器。甚至可以在storyboard中使用IBDesignables. 1508 | * [AutocompleteField](https://github.com/filipstefansson/AutocompleteField) - 可应用于 iOS 应用中文字输入框自动补全的场景, 兼容到 iOS 8. 1509 | * [WordPress-Editor-iOS](https://github.com/wordpress-mobile/WordPress-Editor-iOS) - 一个文本编辑器 简书和新浪博客都在用. 1510 | * [placeholder_TextView](http://code.cocoachina.com/view/129099) - 带有placeholder的TextView:带有提示信息的textview,使用懒加载的思想,支持扩展、自定义,类似许多APP内部的意见反馈页面. 1511 | * [M80AttributedLabel](https://github.com/xiangwangfeng/M80AttributedLabel) - M80AttributedLabel实现文字与表情的混排。一般使用气泡作为背景.功能较齐全的attributed lable,支持attributed string和图片、链接、控件的混排. 1512 | * [CTTextDisplayView](https://github.com/BrownCN023/CTTextDisplayView) - 一个CoreText完成的图文混排视图,主要用于文本中显示表情@#URL等,类似于QQ、微博的评论图文功能. 1513 | 1514 | #### 表情@ 1515 | 1516 | * [SBSAnimoji](https://github.com/simonbs/SBSAnimoji) - 🐵 Animoji app using Apples AvatarKit. 1517 | * [AnimojiStudio](https://github.com/insidegui/AnimojiStudio) - Make Animoji videos with unlimited duration and share anywhere. 1518 | * [Animoji](https://github.com/efremidze/Animoji) - Animoji Generator 🦊 . 1519 | 1520 | #### 字体@ 1521 | 1522 | * [FontAwesomeKit](https://github.com/PrideChung/FontAwesomeKit) - 图片字体库,支持超级字体、基础Icon等,支持同时支持Swift. 1523 | 1524 | #### 多线程@ 1525 | 1526 | * [YYDispatchQueuePool](https://github.com/ibireme/YYDispatchQueuePool) - iOS 全局并发队列管理工具. 1527 | * [JX_GCDTimer](https://github.com/Joeyqiushi/JX_GCDTimer) - 定时器,NSTimer和GCD哪个更好. 1528 | * [BLStopwatch](https://github.com/beiliao-mobile/BLStopwatch) - 代码耗时打点计时器. 1529 | * [Thread](https://github.com/mrhyh/Thread) - 多线程Demo集合. 1530 | 1531 | #### 日历@ 1532 | 1533 | * [FDCalendar](https://github.com/fergusding/FDCalendar) - A custom calendar control in iOS. 1534 | * [FSCalendar](https://github.com/WenchaoD/FSCalendar) - 一款漂亮,强大的 iOS 日历组件 A fully customizable iOS calendar library, compatible with Objective-C and Swift. 1535 | * [MSSCalendar](https://github.com/MSS0306/MSSCalendar) - A simple iOS Calendar 高性能日历控件(类似去哪网). 1536 | * [Calendar](https://github.com/jumartin/Calendar) - 日历、行程安排类的View和控制器。A set of views and controllers for displaying and scheduling events on iOS. 1537 | * [HYYCalendar](https://github.com/kRadius/HYYCalendar) - 一个简单易用的日期的选择的控件,支持日历选择和Picker选择两种方式。支持iOS 6+. 1538 | * [JTCalendar](https://github.com/jonathantribouharet/JTCalendar) - iOS下优美的 Calendar 组件,做 GTD 类 App 必备. 1539 | * [MSCollectionViewCalendarLayout](https://github.com/erichoracek/MSCollectionViewCalendarLayout) - 日历 UICollectionViewLayout for displaying cells chronologically. Similar to the iOS Calendar app. 1540 | 1541 | #### 游戏@ 1542 | 1543 | * [cocos2d-objc](https://github.com/cocos2d/cocos2d-objc) - Cocos2d for iOS and OS X, built using Objective-C. 1544 | 1545 | #### 侧滑与右滑返回手势@ 1546 | 1547 | * [ViewDeck](https://github.com/ViewDeck/ViewDeck) - 项目需要用到左侧右侧各有一个抽屉视图,而这个类库可以极其简单的实现这个功能,不单单是左右各一个,它可以随意设置上下左右的抽屉视图,简直是360度想怎么抽怎么抽. 1548 | * [FDFullscreenPopGesture](https://github.com/forkingdog/FDFullscreenPopGesture) - 非常棒的全屏手势侧滑,只需导入此库,就可以让你的App具备左滑返回功能,不用写一句代码. 1549 | * [SloppySwiper](https://github.com/fastred/SloppySwiper) - iOS系统自带的UINavigationController要7.0才支持,但不过该手势只能从屏幕左侧边缘识别,如果要扩大到整个屏幕范围怎么办?配合一个SloppySwiper无需代码就可以轻松实现。此库支持iOS5.0以上版本(另外:Nav的title滑动不明显,本人写了2个类似的控件),[SloppySwiper-demo](https://github.com/Tim9Liu9/SloppySwiper-Example) :代码方式与storyboard方式。 1550 | * [SCNavigation](https://github.com/singro/SCNavigation) - UINavigation可以右滑返回,隐藏UINavigationBar. 1551 | * [UINavigationController-YRBackGesture](https://github.com/YueRuo/UINavigationController-YRBackGesture) - 支持右滑返回手势,标题栏不动。 1552 | * [GHSidebarNav](https://github.com/gresrun/GHSidebarNav) - 现在比较流行使用侧开(侧滑)菜单设计。试了不少控件,感觉GHSidebarNav最成熟,尤其对纯代码创建的界面兼容性最好。[在Storyboard中使用GHSidebarNav侧开菜单控件](http://www.cnblogs.com/zyl910/archive/2013/06/14/ios_storyboard_sidemenu.html). 1553 | * [iOS-Slide-Menu](https://github.com/aryaxt/iOS-Slide-Menu) - 能够类似Facebook和Path那样弹出左右边栏侧滑菜单,还支持手势。多种可以自定义的属性 (非常不错). 1554 | * [ECSlidingViewController](https://github.com/ECSlidingViewController/ECSlidingViewController) - 侧滑菜单. 1555 | * [JASidePanels](https://github.com/gotosleep/JASidePanels) - 侧滑菜单,有左右菜单,有pop功能,支持手势侧滑,本人使用中:简单. 1556 | * [animated-tab-bar](https://github.com/Ramotion/animated-tab-bar) - 让 Tabbar items能显示萌萌的动画. 1557 | * [tabbar图标动画](http://code.cocoachina.com/detail/284346) - tabbar上图标的动画实现,[源码推荐说明](http://www.cocoachina.com/ios/20150205/11116.html)。 1558 | * [JHMenuTableViewDemo](https://github.com/Jiahai/JHMenuTableViewDemo) - 仿网易邮箱列表侧滑菜单. 1559 | * [SlideMenuView](https://github.com/xudafeng/SlideMenuView) - 炫酷侧滑菜单布局框架,[Android版本的一致实现](Android 版本的一致实现请见:https://github.com/xudafeng/SlidingMenu)。 1560 | * [KGFloatingDrawer](https://github.com/KyleGoddard/KGFloatingDrawer) - 侧滑菜单,qq类似,KyleGoddard/KGFloatingDrawer:一款适合于大屏手机或平板的浮动抽屉式导航界面组件。效果很赞- 侧开菜单,qq类似(与RESideMenu类似). 1561 | * [AIFlatSwitch](https://github.com/cocoatoucher/AIFlatSwitch) - 一款带平滑过渡动画的 Switch 组件类,类相同风格的 Menu/Back[HamburgerButton](https://github.com/fastred/HamburgerButton),类似相同风格的 Menu/Close[hamburger-button](https://github.com/robb/hamburger-button). 1562 | * [WXGSlideMenuDemo](https://github.com/WXGBridgeQ/WXGSlideMenuDemo) - 个简单实现侧拉(侧滑)菜单的小demo,供初学者共同学习、练习使用. 1563 | * [PKRevealController](https://github.com/pkluz/PKRevealController) - PKRevealController是一个可以滑动的侧边栏菜单(可向左、向右或者同时向两侧),只需手指轻轻一点(或者按一下按钮,但是这样滑动时不够炫酷),这类控制的其他库,而PKRevealController是最棒的。安装简便,高度定制且对手势识别良好。可以当做一个标准控件用在iOS SDK中. 1564 | * [FlipBoardNavigationController](https://github.com/michaelhenry/FlipBoardNavigationController) - FlipBoardNavigationController. 1565 | * [MMDrawerController](https://github.com/mutualmobile/MMDrawerController) - 最多人用的一个有关侧边“抽屉”导航框架,里面还有很多你意想不到的交互效果,侧滑. 1566 | * [UIWebView翻页返回效果](http://code.cocoachina.com/detail/316925/UIWebView%E7%BF%BB%E9%A1%B5%E8%BF%94%E5%9B%9E%E6%95%88%E6%9E%9C%EF%BC%88%E5%8F%98%E9%80%9A%E6%96%B9%E6%B3%95%EF%BC%89/) - UIWebView翻页返回效果(变通方法). 1567 | * [LLSlideMenu](https://github.com/lilei644/LLSlideMenu) - 一个弹性侧滑菜单,弹性动画原理借鉴该项目中阻尼函数实现. 1568 | * [ScreenShotBack](https://github.com/zhengwenming/ScreenShotBack) - 全屏返回,截图手势返回,景深效果,类似斗鱼、天天快报、腾讯新闻等APP的手势返回. 1569 | * [MLTransition](https://github.com/molon/MLTransition) iOS7+, pop ViewController with pan gesture from middle or edge of screen. 1570 | 1571 | #### ipad@ 1572 | 1573 | * [UISplitViewControllerDemo](https://github.com/NatashaTheRobot/UISplitViewControllerDemo) - iOS8 UISplitViewController Demo. 1574 | * [Shadertweak](https://github.com/warrenm/Shadertweak) - An iPad app that allows you to rapidly prototype fragment shaders in the Metal shading language. 1575 | * [IntelligentSplitViewController](https://github.com/mrhyh/IntelligentSplitViewController) - A smarter UISplitViewController that rotates correctly when placed inside a UITabBarController. 1576 | 1577 | #### 通讯@ 1578 | 1579 | * [peertalk](https://github.com/rsms/peertalk) - peertalk 是一个支持 iOS 与 Mac 通过 USB 相互通讯的开源库。 Duet Display 基于此实现了将 Mac 界面呈现到 iOS 设备上. 1580 | 1581 | #### 通讯录@ 1582 | 1583 | * [快速查找联系人](http://code.cocoachina.com/view/128245) - 类似微信联系人搜索的界面,快速查找联系人,并支持点击查询结果. 1584 | * [PPGetAddressBook](https://github.com/jkpang/PPGetAddressBook) - 对联系人姓名第二个字做排序处理,对AddressBook框架(iOS9之前)和Contacts框架(iOS9之后)做了对应的封装处理,一句代码搞定联系人的获取与排序. 1585 | 1586 | #### 地图@ 1587 | 1588 | * [YJLocationConverter](https://github.com/stackhou/YJLocationConverter) - 中国国测局地理坐标(GCJ-02)<火星坐标>、世界标准地理坐标(WGS-84) 、百度地理坐标(BD-09)坐标系转换工具类. 1589 | 1590 | #### 三方@ 1591 | #### 三方分享、支付、登录等等@ 1592 | 1593 | * [openshare](https://github.com/100apps/openshare) - 不用官方SDK,利用社交软件移动客户端(微信/QQ/微博/人人/支付宝)分享/登录/支付. 1594 | * [RongCloud-SDK-description](https://github.com/zhengwenming/RongCloud-SDK-description) 介绍融云SDK即时通讯机制和集成步骤,由于国内CSDN博客封杀带有广告性质的文章(其实不是打广告,纯粹的技术分享),所以只能在Github发表了。希望大家支持我,谢谢。Demo地址:https://github.com/zhengwenming/RCIM . 1595 | * [RCIM](https://github.com/zhengwenming/RCIM) 融云SDK集成即时通讯。单聊,群聊,讨论组,自定义cell,自定义消息等. 1596 | * [WechatPayDemo](https://github.com/gbammc/WechatPayDemo) - 非官方微信支付 iOS demo. 1597 | * [ShareView](https://github.com/mrhyh/ShareView) - 一个xib做的分享UI. 1598 | * [HXEasyCustomShareView](https://github.com/huangxuan518/HXEasyCustomShareView) - 轻松集成分享界面UI. 1599 | 1600 | #### 其他库@ 1601 | 1602 | * [iOS源代码](http://opensource.apple.com/source/CF/) - iOS源代码. 1603 | * [Slidden](https://github.com/Brimizer/Slidden) - 一个老外开源的开发自定义键盘的库,利用这个开源库,可以方便的配置键位、颜色以及键位对应的图片. 1604 | * [TPKeyboardAvoiding](https://github.com/michaeltyson/TPKeyboardAvoiding) - 用户键盘弹出自动计算高度,进行屏幕滚动操作. 1605 | * [CDPMonitorKeyboard](http://d.cocoachina.com/code/detail/298267) - CDPMonitorKeyboard封装,可以解决输入视图(例如textField,textView等)被键盘覆盖问题,并可设置高于键盘多少. 1606 | * [自动监听键盘高度](http://code.cocoachina.com/detail/297973/%E8%87%AA%E5%8A%A8%E7%9B%91%E5%90%AC%E9%94%AE%E7%9B%98%E9%AB%98%E5%BA%A6/) - 自动监听键盘高度,初始界面,输入框在屏幕最下方,当键盘出现时,输入框随即移动到键盘上方. 1607 | * [ZYKeyboardUtil](https://github.com/liuzhiyi1992/ZYKeyboardUtil) - 全自动处理键盘遮挡事件,只需要一个Block,全自动处理任何多层嵌套复杂界面 因键盘升降 造成的输入控件遮挡问题。 1608 | 第三方键盘分次弹出问题 ,[说明](http://ios.jobbole.com/85135/). 1609 | * [KeyboardToolBar](https://github.com/Jiar/KeyboardToolBar/) - 从此不再担心键盘遮住输入框,[文档](http://www.jianshu.com/p/48993ff982c1)。 1610 | * [Review Monitor](https://launchkit.io/reviews/) - 第一时间自动推送 Apple Store 的用户评论到你的邮件箱或者 Slack,第一时间跟进用户反馈,打造优秀 App 必备工具!类似的有:App annie 的类似功能. 1611 | * [WBWebViewConsole](https://github.com/Naituw/WBWebViewConsole) - 类似微博iPhone客户端的 “调试选项” 吗?把其中的 “内置浏览器网页调试” 开源在 Github 上了. 1612 | * [ios-good-practices](https://github.com/futurice/ios-good-practices) - ios-good-practices iOS 开发最佳实践. 1613 | * [iOS开发最佳实践](http://ios.jobbole.com/81830/) - iOS 开发最佳实践-中文. 1614 | * [TodayExtensionSharingDefaults](http://code.cocoachina.com/detail/232160) - TodayExtensionSharingDefaults是一个iOS 8 Today扩展示例,可以使用NSUserDefaults与其containing app分享数据. 1615 | * [Password-keyboard](https://github.com/liuchunlao/Password-keyboard) - 随机变换数字位置的密码键盘。 模仿银行类应用在付款时输入的随机密码键盘. 1616 | * [SemverKit](https://github.com/nomothetis/SemverKit) - 针对符合『语义化版本规范 2.0.0』版本号的解析、比较运算类库。不仅支持 Major, Minor, Patch,还支持 Alpha 和 Beta 预发布版本,以及相应地递增运算扩展. 1617 | * [Tesseract-OCR-iOS](https://github.com/gali8/Tesseract-OCR-iOS) - 有关OCR文字识别项目. 1618 | * [Screenotate](https://github.com/osnr/Screenotate) - 支持 OCR 文字识别的载屏笔记 Mac 完整应用. 1619 | * [Olla4iOS](https://github.com/nonstriater/Olla4iOS) - 过去积累的一些方便复用的类和方法,还在整理中. 1620 | * [DKNightVersion](https://github.com/Draveness/DKNightVersion) - 用最快的方式给你的应用加上夜间和白天的切换效果. 1621 | * [TouchVisualizer](https://github.com/morizotter/TouchVisualizer) - 实用的多点触摸可视化组件。扩展并作用于 UIWindows,结构上提供了简单地针对触摸显示定制,比如触摸点的颜色. 1622 | * [RegexKitLite](https://github.com/wezm/RegexKitLite) - 用来处理正则表达式. 1623 | * [Seam](https://github.com/nofelmahmood/Seam) - 基于 CloudKit 服务器实现多终端数据同步。 1624 | * [IDNFeedParser](https://github.com/photondragon/IDNFeedParser) - 一个简单易用的Rss解析库. 1625 | * [CoreUmeng](https://github.com/CharlinFeng/CoreUmeng) - 简单:友盟分享封装. 1626 | * [Mirror](https://github.com/kostiakoval/Mirror) - 通过反射(Refection)实现镜像对象封装库。从而可以更轻松获取(或输出)对象属性名、类型及值变量. 1627 | * [PermissionScope](https://github.com/nickoneill/PermissionScope) - 用这个库可以在询问用户前,就告知用户所需的系统权限,为用户带来更好的体验。接受度更高—>更多活跃用户->更高的留存率->数据更好->下载率更高. 1628 | * [LocationManager](https://github.com/intuit/LocationManager) - 地理位置管理封装库, CoreLocation使用起来还是比较麻烦的,需要授权,判断系统版本等等,所以推荐使用第三方框架LocationManager,使用Block,十分简单![iOS-CoreLocation:无论你在哪里,我都要找到你!](http://www.cocoachina.com/ios/20150721/12611.html) . 1629 | * [pangu.objective-c](https://github.com/Cee/pangu.objective-c) - 有多种语言实现版本~ Pangu.Objective-C:格式化中英文之间的空格(OC). 1630 | * [objection](https://github.com/atomicobject/objection) - 一个轻量级的依赖注入框架Objection. 1631 | * [ControlOrientation](https://github.com/johnlui/Swift-On-iOS/tree/master/ControlOrientation/ControlOrientation) - 如何用代码控制以不同屏幕方向打开新页面【iOS】, [使用说明](https://lvwenhan.com/ios/458.html). 1632 | * [GameCenterManager](https://github.com/nihalahmed/GameCenterManager) - 在iOS上管理GameCenter vanilla并不算难,但是有了这个库会更简单也更快。好上加好不是更好么. 1633 | * [SlackTextViewController](https://github.com/slackhq/SlackTextViewController) - 用作极佳、定制的文本输入控制时,自适应文本区域,手势识别、自动填充、多媒体合并,快速drop-in解决方案. 1634 | * [TAPromotee](https://github.com/JanC/TAPromotee) - 交叉推广应用是你可以免费实现的最佳市场推广策略之一。使用这个库做起来非常简单,不用都不可能——将TAPromotee加入你的podfile中,免费配置与享受更多下载吧。 1635 | * [DownloadFontOnline](https://github.com/cgwangding/DownloadFontOnline) - 实现了在线下载一些字体的功能,不用在工程中导入字体库,下载的字体也不会保存在你的应用中,所以可以放心使用。修复了一下崩溃的bug。 1636 | * [STClock](https://github.com/zhenlintie/STClock) - 仿锤子时钟. 1637 | * [GitUp](https://github.com/git-up/GitUp) - GitUp是一个可视化的Git客户端,能够实时的进行编辑、合并、回滚等多种操作,更多功能,请下载体验. 1638 | * [获取联系人信息,通讯录](http://code.cocoachina.com/detail/320392/) - 获取联系人信息,通讯录. 1639 | * [Universal-Jump-ViewController](https://github.com/HHuiHao/Universal-Jump-ViewController) - 根据规则跳转到指定的界面(runtime实用篇一)。 1640 | * [打开自带地图、百度地图、腾讯地图](http://code.cocoachina.com/view/128249) - 打开自带地图、百度地图、腾讯地图。 1641 | * [DDSlackFeedback](https://github.com/deepdevelop/DDSlackFeedback) - 用这个接口实现的摇一摇上传文字或者截屏反馈到你的 Slack channel,特别适合测试 app 的时候用,集成也很简单。 1642 | * [BabyBluetooth](https://github.com/coolnameismy/BabyBluetooth) - 是一个非常容易使用的蓝牙库, 适用于 iOS 和 Mac OS, 基于原生 CoreBluetooth 框架封装, 可以帮开发者们更简单地使用 CoreBluetooth API, 使用链式方法体, 使得代码更简洁、优雅。[iOS蓝牙开发(四):BabyBluetooth蓝牙库介绍](http://www.cocoachina.com/ios/20160219/15301.html) 1643 | * [BHBDrawBoarderDemo车](https://github.com/bb-coder/BHBDrawBoarderDemo) - 仿写猿题库练题画板功能,没有用drawRect,而是用CAShapeLayer来做画板绘画,特别省内存,赞1个,[实现分析](http://bihongbo.com/2016/01/03/memoryGhostdrawRect/). 1644 | * [BGTaobao](https://github.com/huangzhibiao/-) - ios 高仿淘宝/京东详情页 - 集合各种测试框架. 1645 | * [JLRoutes](https://github.com/joeldev/JLRoutes) - JLRoutes好用的URL map库,它的作用是让按钮的点击像网页里的链接一样,只是触发了某个URL,而没有像pushViewController这样的行为,实现解耦. 1646 | * [CTMediator](https://github.com/casatwy/CTMediator) - 应用架构组件化解耦库,让你的`Appdelegate.h`等文件不在显得头大,模块之间解除强耦合性. 1647 | * [PromiseKit](https://github.com/mxcl/PromiseKit) - 同时支持 Swift 及 Objective-C 的 Promise 类库,异步编程类库 提供了很多实用的异步函数 让异步编程更简单. 1648 | * [HWChangeFont](https://github.com/Loveway/HWChangeFont) - 利用runtime一键改变字体。[教程](http://www.jianshu.com/p/b9fdd17c525e). 1649 | * [RuntimeSummary](https://github.com/Tuccuay/RuntimeSummary) - 一个集合了常用 Objective-C Runtime 使用方法的 Playground。 1650 | * [GCDThrottle](https://github.com/cyanzhong/GCDThrottle) - 限制频率过高的调用GCD多线程。 1651 | * [WHC_KeyboardManager](https://github.com/netyouli/WHC_KeyboardManager)iOS平台轻量级的键盘管理器,使用简单功能强大,键盘再也不会挡住输入控件 1652 | 1653 | #### 消息相关@ 1654 | #### 消息推送客户端@ 1655 | 1656 | * [SmartPush](https://github.com/shaojiankui/SmartPush) SmartPush,一款iOS苹果远程推送测试程序,Mac OS下的APNS工具APP,iOS Push Notification Debug App 1657 | * [Orbiter](https://github.com/mattt/Orbiter) - 消息推送客户端:Push Notification Registration for iOS. 1658 | * [PushDemo](https://github.com/ios44first/PushDemo) - 客户端消息接收消息代码,[IOS开发之 ---- IOS8推送消息注册](http://blog.sina.com.cn/s/blog_71715bf80102uy2k.html) , [分分钟搞定IOS远程消息推送](http://my.oschina.net/u/2340880/blog/413584)。 1659 | 1660 | #### 消息推送服务端@ 1661 | 1662 | * [javapns源代码](https://code.google.com/p/archive/downloads/list) - 消息推送的java服务端代码,注意:DeviceToken中间不能有空格。 1663 | * [pushMeBaby](https://github.com/stefanhafeneger/PushMeBaby) - Mac端消息推送端代码,注意:DeviceToken中间要有空格。 1664 | 1665 | #### 时间日期@ 1666 | 1667 | * [DateTools](https://github.com/MatthewYork/DateTools) - 用于提高Objective-C中日期和时间相关操作的效率。灵感来源于 DateTime和Time Period Library. 1668 | * [NSDate-TimeAgo](https://github.com/kevinlawler/NSDate-TimeAgo) - A "time ago", "time since", "relative date", or "fuzzy date" category for NSDate and iOS, Objective-C, Cocoa Touch, iPhone, iPad. 1669 | * [iso-8601-date-formatter](https://github.com/boredzo/iso-8601-date-formatter) - cocoaNSFormatter子类日期转换为从ISO- 8601格式的字符串。支持日历,星期,和序格式. 1670 | 1671 | #### 设计模式@ 1672 | 1673 | * [Design-Patterns-In-Swift](https://github.com/ochococo/Design-Patterns-In-Swift) 非常👍 Design Patterns implemented in Swift 1674 | * [KVOController] (https://github.com/facebook/KVOController) 是一个简单安全的KVO(Key-value Observing,键-值观察)工具,用于iOS 和OS X 应用开发中,开源自facebook。 在项目中有使用 KVO ,那么 KVOController 绝对是个好选择。 1675 | * [DecouplingKit] (https://github.com/coderyi/DecouplingKit) iOS模块化过程中模块间解耦方案。 1676 | * [Trip-to-iOS-Design-Patterns](https://github.com/skyming/Trip-to-iOS-Design-Patterns) 1677 | 1678 | #### 版本管理@ 1679 | 1680 | * [cocoapods安装指南](http://code4app.com/article/cocoapods-install-usage) - cocoapods安装指南. 1681 | * [fastlane](https://github.com/fastlane/fastlane) - 非常棒👍👍👍一套iOS开发和持续集成的命令行工具fastlane,可以用来快速搭建CI甚至自动提交的开发环境。这套工具中包括了上传ipa文件,自动截取多语言截屏,生成推送证书,管理产品证书等一系列实用工具. 1682 | 1683 | #### Git用法@ 1684 | 1685 | * [git-recipes](https://github.com/geeeeeeeeek/git-recipes) - 高质量的Git中文教程. 1686 | * [lark](https://github.com/larkjs/lark/wiki/怎样贡献代码) - 怎样在Github上面贡献代码. 1687 | * [my-git](https://github.com/xirong/my-git) - 有关git的学习资料. 1688 | * [gitignore](https://github.com/github/gitignore) - .gitignore模板集合,包含了各种语言. 1689 | * [Linus讲解git](https://www.youtube.com/watch?v=4XpnKHJAok8) - Google大会演讲,Linus介绍他创造git的原因,对比了git和svn. 1690 | * [Git教程 - 廖雪峰的官方网站](http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000) - 史上最浅显易懂的Git教程. 1691 | * [git - 简明指南](http://rogerdudler.github.io/git-guide/index.zh.html) - 助你入门 git 的简明指南,木有高深内容 ;) 1692 | * [常用 Git 命令清单](http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html) - 来自阮一峰的网络日志,列出了 Git 最常用的命令。 1693 | * [Pro Git(中文版)](https://git.oschina.net/progit/) - Pro Git(中文版). 1694 | * [Git Submodule使用完整教程](http://www.kafeitu.me/git/2012/03/27/git-submodule.html) - Git Submodule使用完整教程. 1695 | * [Git权威指南](http://www.worldhello.net/gotgit/) - Git权威指南. 1696 | * [git-flow 备忘清单](http://danielkummer.github.io/git-flow-cheatsheet/index.zh_CN.html) - git-flow 是一个 git 扩展集,按 Vincent Driessen 的分支模型提供高层次的库操作. 1697 | * [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/) - git-flow 备忘清单. 1698 | * [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/setting-up-a-repository/) - Atlassian Git Tutorials. 1699 | * [Try Git ( Interactive)](https://try.github.io/levels/1/challenges/1) - 互动性的教你使用git. 1700 | * [Git (简体中文)](https://wiki.archlinux.org/index.php/Git_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)) - Git (简体中文). 1701 | * [Git Community Book 中文版](http://gitbook.liuhui998.com/index.html) - Git Community Book 中文版. 1702 | * [awesome-github-templates](https://github.com/devspace/awesome-github-templates) - github issue 和 pull request教程模板. 1703 | * [git-recipes](https://github.com/geeeeeeeeek/git-recipes) - 高质量的Git中文教程,来自国外社区的优秀文章和个人实践. 1704 | * [git-it](http://jlord.us/git-it/) - GitHub一位女员工写的Git教程. 1705 | * [Git Town](http://www.git-town.com/) - GitTown 定义了很多高级的 git 命令,例如 git ship / git sync 等以方便 git 的使用. 1706 | * [git-tips](https://github.com/git-tips/tips) - 最常用的Git的提示和技巧。 1707 | * [「Githug」Git 游戏通关流程](http://www.jianshu.com/p/482b32716bbe) - 这个命令行工具通过游戏的方式来练习你的 Git 技能. 1708 | * [progit2-zh](https://github.com/progit/progit2-zh) - Pro Git,第二版,简体中文. 1709 | * [git-style-guide](https://github.com/agis-/git-style-guide)- git风格指南. 1710 | * [Git 进阶技巧](https://github.com/xhacker/GitProTips/blob/master/zh_CN.md) - 适合了解 Git 的基本使用,知道 commit、push、pull,希望掌握 Git 更多功能的人阅读. 1711 | * [learn-git-basics](https://github.com/NataliaLKB/learn-git-basics) - git指南. 1712 | * [30 天精通 Git 版本控管](https://github.com/doggy8088/Learn-Git-in-30-days/blob/master/zh-tw/README.md) 30 天精通 Git 版本控管. 1713 | * [图解Git](http://marklodato.github.io/visual-git-guide/index-zh-cn.html) - 图解git中的最常用命令. 1714 | --------------------------------------------------------------------------------