├── LICENSE
├── .gitignore
├── Swift.md
└── README.md
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018
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 |
--------------------------------------------------------------------------------
/.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 | # CocoaPods
32 | #
33 | # We recommend against adding the Pods directory to your .gitignore. However
34 | # you should judge for yourself, the pros and cons are mentioned at:
35 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
36 | #
37 | # Pods/
38 |
39 | # Carthage
40 | #
41 | # Add this line if you want to avoid checking in source code from Carthage dependencies.
42 | # Carthage/Checkouts
43 |
44 | Carthage/Build
45 |
46 | # fastlane
47 | #
48 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
49 | # screenshots whenever they are needed.
50 | # For more information about the recommended setup visit:
51 | # https://docs.fastlane.tools/best-practices/source-control/#source-control
52 |
53 | fastlane/report.xml
54 | fastlane/Preview.html
55 | fastlane/screenshots/**/*.png
56 | fastlane/test_output
57 |
58 | # Code Injection
59 | #
60 | # After new code Injection tools there's a generated folder /iOSInjectionProject
61 | # https://github.com/johnno1962/injectionforxcode
62 |
63 | iOSInjectionProject/
64 |
--------------------------------------------------------------------------------
/Swift.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | [Objective-C版本点击这里](https://github.com/honkerSK/iOSResources)
4 |
5 | ### About
6 |
7 | A curated list of iOS objective-C ecosystem.
8 |
9 | ### How to Use
10 |
11 | - Simply press command + F + "xxx@" to search for a keyword
12 | - Go through our *Content Menu*
13 |
14 | ### Feedback
15 |
16 | 期待大家和我们一起共同维护,同时也期望大家随时能提出宝贵的意见(直接提交issues即可)。请广大网友只按照目录结构(即使目录结构有问题)添加三方库,并提交pull request。目录问题大家提出issues后楼主会及时更改的。
17 |
18 | ## 目录
19 | - [Swift学习资料@](#swift学习资料)
20 | - [iOS11@](#iOS11)
21 | - [完整App@](#完整app)
22 | - [Xcode8插件@](#xcode8插件)
23 | - [App框架@](#app框架)
24 | - [响应式框架@](#响应式框架)
25 | - [页面路由@](#页面路由)
26 | - [KVO@](#KVO)
27 | - [版本管理@](#版本管理)
28 | - [混合开发@](#混合开发)
29 | - [设计模式@](#设计模式)
30 | - [runtime@](#rumtime@)
31 | - [安全@](#安全)
32 | - [服务端@](@服务端)
33 | - [网络@](#网络)
34 | - [网络请求@](#网络请求)
35 | - [图像获取@](#图像获取)
36 | - [网络聊天@](#网络聊天)
37 | - [网络测试@](#网络测试)
38 | - [网页框架@](#网页框架)
39 | - [NetworkExtension@](#NetworkExtension)
40 | - [网络解析@](#网络解析)
41 | - [CSV](#csv)
42 | - [JSON@](#json)
43 | - [xml@](#xml)
44 | - [AutoLayout@](#autolayout)
45 | - [数据存储@](#数据存储)
46 | - [缓存处理@](#缓存处理)
47 | - [CoreData@](#CoreData)
48 | - [数据库@](#数据库)
49 | - [钥匙链@](#钥匙链)
50 | - [多媒体@](#多媒体)
51 | - [相机@](#相机)
52 | - [二维码@](#二维码)
53 | - [PDF@](#pdf)
54 | - [GIF@](#GIF)
55 | - [音频@](#音频)
56 | - [媒体流@](#媒体流)
57 | - [视频@](#视频)
58 | - [视频播放@](#视频播放)
59 | - [视频处理@](#视频处理)
60 | - [图像@](#图像)
61 | - [人脸识别@](#人脸识别)
62 | - [图像识别@](#图像识别)
63 | - [图像处理@](#图像处理)
64 | - [图像缓存@](#图像缓存)
65 | - [图像浏览@](#图像浏览)
66 | - [相册@](相册#)
67 | - [数据结构/算法@](#数据结构/算法)
68 | - [动画@](#动画)
69 | - [转场动画@](#转场动画)
70 | - [特效@](@特效)
71 | - [侧滑与右滑返回手势@](#侧滑与右滑返回手势)
72 | - [gif动画@](#gif动画)
73 | - [其他动画@](#其他动画)
74 | - [编码规范@](#编码规范)
75 | - [机器学习@](#机器学习)
76 | - [AI@](#AI)
77 | - [数学@](#数学)
78 | - [UI@](#ui)
79 | - [列表@](#列表)
80 | - [scrollView@](#scrollView)
81 | - [图表@](#图表)
82 | - [日历@](#日历)
83 | - [时间@](#时间)
84 | - [下拉刷新@](#下拉刷新)
85 | - [模糊效果@](#模糊效果)
86 | - [选择器@](#选择器)
87 | - [富文本@](#富文本)
88 | - [字体@](#字体)
89 | - [隐藏与显示@](#隐藏与显示)
90 | - [HUD与Toast@](#hud与toast)
91 | - [对话框@](#对话框)
92 | - [pop@](#pop)
93 | - [导航栏@](#导航栏)
94 | - [瀑布流@](#瀑布流)
95 | - [菜单@](#菜单)
96 | - [TabBar@](#tabbar)
97 | - [进度@](#进度)
98 | - [引导页@](#引导页)
99 | - [page@](#page)
100 | - [评分@](#评分)
101 | - [键盘@](#键盘)
102 | - [搜索@](#搜索)
103 | - [Button@](#Button)
104 | - [其他UI@](#其他ui)
105 | - [多线程@](#多线程)
106 | - [工具@](#工具)
107 | - [Category@](#category)
108 | - [Color@](#Color)
109 | - [Xcode插件@](#Xcode插件)
110 | - [Xcode相关@](#Xcode相关)
111 | - [游戏@](#游戏)
112 | - [文本@](@文本)
113 | - [VR@](#VR)
114 | - [AR@](#AR)
115 | - [全景@](#全景)
116 | - [开发资料@](#开发资料)
117 | - [播客@](#播客)
118 | - [他人开源总结@](#他人开源总结)
119 | - [设计@](#设计)
120 | - [好的文章@](#好的文章)
121 | - [测试调试@](#测试调试)
122 | - [分析@](#分析)
123 | - [优化@](#优化)
124 | - [WebView@](#webview)
125 | - [FaceBook@](#faceBook)
126 | - [通讯录@](#通讯录)
127 | - [Email@](#email)
128 | - [三方分享、支付、登录等等@](#三方分享支付登录等等)
129 | - [其他库@](#其他库)
130 | - [蓝牙@][蓝牙@]
131 | - [地图@](#地图)
132 | - [通知@](#通知)
133 | - [版本新API的Demo@](#版本新api的demo)
134 | - [代码安全与密码@](#代码安全与密码)
135 | - [动态更新@](#动态更新)
136 | - [AppleWatch@](#applewatch)
137 | - [VPN@](#vpn)
138 | - [mac@](#mac)
139 | - [未分类@](#未分类)
140 | - [后端@](#后台)
141 |
142 | -------
143 | 具体内容
144 |
145 | #### Swift学习资料@
146 |
147 | * [swift-evolution](https://github.com/apple/swift-evolution) Swift更新日志
148 | * [SwiftGuide](https://github.com/ipader/SwiftGuide) 很赞 这份指南汇集了Swift语言主流学习资源,并以开发者的视角整理编排-- 非常不错,值得推荐。
149 | * [leetcode](https://leetcode.com/accounts/login/) 一个练习、评估自己水平的代码平台,跟ACM有点类似
150 | * [Swift中文指南](https://github.com/numbbbbb/the-swift-programming-language-in-chinese) - 中文版Apple官方Swift教程《The Swift Programming Language》,[老码版本](https://numbbbbb.gitbooks.io/-the-swift-programming-language-/content/) [历史版本更新说明](https://numbbbbb.gitbooks.io/-the-swift-programming-language-/content/chapter1/03_revision_history.html)。
151 | * [iOS-Swift-Demos](https://github.com/Lax/iOS-Swift-Demos) 精心收集并分类整理的Swift开发学习资源,包括Apple官方提供的示例代码和文档,以及github上的项目和国内外开发者的技术博客。欢迎提交pull-request一起维护。[iOS Swift Demos from Apple] http://blog.liulantao.com/SwiftBeginnersGuide/
152 | * [Swift 开源项目精选-v1.0](http://dev.swiftguide.cn/archive/featured-open-source-projects-in-swift_v1.0.html) - Swift 开源项目精选-v1.0.
153 | * [The Swift Programming Language 中文版](http://wiki.jikexueyuan.com/project/swift/) - The Swift Programming Language 中文版。
154 | * [swifttoolbox](http://www.swifttoolbox.io/) - swifttoolbox swift开发的开源库汇总。
155 | * [Awesome Swift](https://swift.zeef.com/robin.eggenkamp) - 一个收集了很多 Swift 开发资源的网站。
156 | * [Developing_iOS_8_Apps_With_Swift](https://github.com/CS193P-Translation-Group/Developing_iOS_8_Apps_With_Swift) - Developing iOS 8 Apps with Swift 字幕简体中文翻译项目(斯坦福白胡子老头swift教学视频).
157 | * [Swift-On-iOS](https://github.com/johnlui/Swift-On-iOS) - JohnLui 的 Swift On iOS 代码仓库.
158 | * [30DaysofSwift](https://github.com/allenwong/30DaysofSwift) - 30DaysofSwift 自学 iOS - [三十天三十个 Swift 项目](http://weibo.com/ttarticle/p/show?id=2309403942494873235448).
159 | * [MySampleCode](https://github.com/bestswifter/MySampleCode) Swift的一些Demo.
160 | * [iOS与swift学习之路](https://toutiao.io/subjects/35291#187)
161 | * [iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly) - 老司机 iOS 周报.
162 |
163 | #### iOS11@
164 |
165 | * [iOS-11-by-Examples](https://github.com/artemnovichkov/iOS-11-by-Examples) Examples of new iOS 11 APIs.
166 | * [NotchKit](https://github.com/HarshilShah/NotchKit) A simple way to hide the notch on the iPhone X.
167 | * [HairPowder](https://github.com/intmain/HairPowder) Hair Powder for iPhoneX "M" Shape pattern baldness design.
168 | * [iPhoneMoCapiOS](https://github.com/johnjcsmith/iPhoneMoCapiOS) - Real-time Facial Performance Capture with iPhone X.
169 |
170 | #### 完整App@
171 |
172 | * [open-source-ios-apps](https://github.com/dkhamsing/open-source-ios-apps) - Collaborative List of Open-Source iOS Apps 非常赞👍👍👍 .
173 | * [Swift 30 Projects](https://github.com/soapyigu/Swift30Projects) - 最新 Swift 3.0 的30个小App,更注重代码规范和架构设计(故胤道长).
174 | * [V2ex-Swift](https://github.com/Finb/V2ex-Swift) - 用 Swift 写的 V2EX 客户端.
175 | * [iBBS-Swift](https://github.com/iAugux/iBBS-Swift) - “新手开源一个用Swift(2.0)写的论坛客户端”。[BBS 服务端](http://obbs.sinaapp.com/).
176 | * [NirZhihuDaily2.0_swift](https://github.com/zpz1237/NirZhihuDaily2.0) - 精仿了知乎日报iOS端练手,Swift2.0,注释相当详细.
177 | * [DesignerNewsApp](https://github.com/MengTo/DesignerNewsApp) - Swift 开发的 DesignerNews 客户端,看着美美的.
178 | * [Eidolon](https://github.com/artsy/eidolon) - 艺术品拍卖的投标亭平台,用swift与反应式编程框架 ReactiveCocoa.
179 | * [BaiduFM-Swift](https://github.com/belm/BaiduFM-Swift) - 百度FM, swift语言实现,基于最新xcode6.3+swift1.2,初步只是为了实现功能,代码比较粗燥,后面有时间会整理,支持Apple Watch。
180 | * [Tuan](https://github.com/aiqiuqiu/Tuan) - 模仿MJ老师iPad版美团(swift版),偶有bug 见谅.
181 | * [ios-oss](https://github.com/kickstarter/ios-oss) - Kickstarter for iOS. Bring new ideas to life, anywhere.
182 | * [CocoaChinaPlus](https://github.com/zixun/CocoaChinaPlus) - CocoaChina+是一款开源的第三方CocoaChina移动端。整个App都用Swift2.0编写(除部分第三方OC代码外,比如JPush和友盟).
183 | * [SimpleMemo](https://github.com/likumb/SimpleMemo) - 易便签已经转到Swift2.0,全面适配iOS9和Watch OS2,并支持iPhone6s和iPhone6sPlus的3D Touch功能,包括图标快捷键和内容预览.
184 | * [SelectionOfZhihu.swift](https://github.com/sheepy1/SelectionOfZhihu) - 『看知乎』iOS 客户端, [项目说明](http://www.jianshu.com/p/2c3a0f109788).
185 | * [Yep.swift](https://github.com/CatchChat/Yep) - Yep 一个由天才开发给天才们使用的社交软件.
186 | * [LoveFreshBeen.swift](https://github.com/ZhongTaoTian/LoveFreshBeen) - 高仿爱鲜蜂 - Swift2.0.
187 | * [trySwiftApp.swift](https://github.com/ZhongTaoTian/LoveFreshBeen) - trySwiftApp一款较为完整的会议原型应用。有需求的同学可以做为开发参考.
188 | * [PinGo.swift](https://github.com/gaowanli/PinGo) - PinGo.swift:纯Swift编写的仿“随遇”App.
189 | * [UmbrellaWeather.swift](https://github.com/ZeroJian/UmbrellaWeather) - UmbrellaWeather.swift使用 Swift 编写的一款天气应用,现已上架 AppStore.
190 | * [SwiftWeather](https://github.com/JakeLin/SwiftWeather) - SwiftWeather清新淡雅持续改进天气预报项目.
191 | * [Phonetic.swift](https://github.com/iAugux/Phonetic) - Phonetic一个 iOS 版的 Phonetic Contacts,功能很多,其中昵称功能非常实用,已在 GitHub 开源并上架 App Store.
192 | * [edhita.swift](https://github.com/tnantoka/edhita) - edhita.swift支持Markdown, HTML预览的文本编辑器.
193 | * [PilesSugar.swift](https://github.com/cornerAnt/PilesSugar) - PilesSugar.swift:Swift高仿项目,堆糖.
194 | * [duckduckgo](https://github.com/duckduckgo/iOS) - DuckDuckGo iOS Application.
195 | * [react-native-gitfeed](https://github.com/xiekw2010/react-native-gitfeed) - 目前最实用简洁的github客户端了.
196 | * [SoundCloudSwift](https://github.com/pepibumur/SoundCloudSwift) - SoundCloud的Swift版本,采用Swift2.0,Reactive API with ReactiveCocoa 4.0.
197 | * [LeagueofLegends](https://github.com/HarrisHan/LeagueofLegends) - 一个关于英雄联盟的完整iOS开源项目,接口均来自多玩,腾讯各大游戏平台.
198 | * [Coderpursue.swift](https://github.com/wenghengcong/Coderpursue) - 一款 Github 第三方客户端,使用最新 Swift 语言编写.
199 | * [BTApp](https://github.com/Ryan0520/BTApp) - BTApp 仿半糖 iOS App 的 Demo 应用.
200 | * [有妖气漫画](https://github.com/spicyShrimp/U17) - 精仿有妖气漫画(Swift4).
201 | * [MarkLite](https://github.com/zhubinchen/MarkLite) - iOS markdown编辑器.
202 | * [LXFFM](https://github.com/LinXunFeng/LXFFM) - 高仿喜马拉雅FM.
203 | * [TodayNews](https://github.com/hrscy/TodayNews) - Swift4 模仿今日头条.
204 | * [notGIF](https://github.com/atuooo/notGIF) - 一款展示、管理和分享相册中 GIF 的应用,并适配了 iMessage Extension.
205 | * [TheGreatGame](https://github.com/dreymonde/TheGreatGame) - Open-source first-class iOS app dedicated to Women’s Euro 2017.
206 | * [trust-wallet-ios](https://github.com/TrustWallet/trust-wallet-ios) - 📱 Trust - Ethereum Wallet for iOS.
207 | * [Instagram](https://github.com/Imputes/Instagram) - 📱 💯 A simple imitation of Instagram app.
208 | * [cnode-swift](https://github.com/nswbmw/cnode-swift) - iOS 上更好用的 CNode 客户端.
209 |
210 | #### Xcode8插件@
211 |
212 | * [SwiftGen](https://github.com/SwiftGen/SwiftGen) - The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs!.
213 | * [FileExplorer](https://github.com/Augustyniak/FileExplorer) - 完整的文件资源管理器组件.
214 | * [Drafter](https://github.com/L-Zephyr/Drafter) - 在iOS项目中自动生成类图和方法调用图 - Generate call graph in iOS project.
215 |
216 | #### App框架@
217 |
218 | * [katana-swift](https://github.com/BendingSpoons/katana-swift) - Swift Apps in a Swoosh! A modern framework for creating iOS apps, inspired by React and Redux. http://katana.bendingspoons.com
219 | * [SlackKit](https://github.com/SlackKit/SlackKit) SlackKit makes it easy to build Slack apps in Swift.
220 | * [Lona](https://github.com/airbnb/Lona) - A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, images, and other artifacts.
221 | * [katana-swift](https://github.com/BendingSpoons/katana-swift)一个用于编写iOS应用程序的现代Swift框架,灵感来自React和Redux。 Swift Apps in a Swoosh! A modern framework for creating iOS apps, inspired by React and Redux.
222 | * [SwiftyMocky](https://github.com/MakeAWishFoundation/SwiftyMocky) - Framework for mock generation.
223 | * [Flix](https://github.com/DianQK/Flix) - 快速搭建列表类界面的框架.
224 | * [IBAnimatable](https://github.com/IBAnimatable/IBAnimatable) - Design and prototype customized UI, interaction, navigation, transition and animation for App Store ready Apps in Interface Builder with IBAnimatable.
225 | * [Sourcery](https://github.com/krzysztofzablocki/Sourcery) - 一个将元程序引入Swift的工具,允许你生成Swift的代码.
226 | * [PromiseKit](https://github.com/mxcl/PromiseKit) - 同时支持 Swift 及 Objective-C 的 Promise 类库,异步编程类库 提供了很多实用的异步函数 让异步编程更简单.
227 | * [Alicerce](https://github.com/Mindera/Alicerce) - A base for iOS Applications made with ❤️ by Mindera 🤠.
228 | * [EasyReact](https://github.com/meituan/EasyReact) - Are you confused by the functors, applicatives, and monads in RxSwift and ReactiveCocoa? It doesn't matter, the concepts are so complicated that not many developers actually use them in normal projects. Is there an easy-to-use way to use reactive programming? EasyReact is born for this reason.
229 | * [react-native-maps](https://github.com/react-community/react-native-maps) - React Native Mapview component for iOS + Android.
230 |
231 | #### 响应式框架@
232 |
233 | * [ReactiveCocoa](https://github.com/ReactiveCocoa/ReactiveCocoa) Streams of values over time 一个支持FRP(函数响应式编程)的框架 非常👍👍👍 .
234 | * [RxSwift](https://github.com/ReactiveX/RxSwift) - RxSwift:函数响应式编程框架,非常👍👍👍 .
235 | * [RxPermission.swift](https://github.com/sunshinejr/RxPermission) - 通过绑定 RxSwift 实现的 RxPermission。
236 | * [ReactiveAnimation](https://github.com/ReactiveCocoa/ReactiveAnimation) - ReactiveCocoa 推出了一个叫 ReactiveAnimation 的子项目,直接用完全用 Swift 来实现了。
237 | * [Swiftest](https://github.com/bppr/Swiftest) - BDD 全称 Behavior Driven Development,行为驱动开发。各种 DD 数不胜数,孰优孰劣争论不休,其实归根结底还是要根据使用场景进行选择。
238 |
239 | #### 页面路由@
240 |
241 | * [ACRouter](https://github.com/Archerlly/ACRouter) - Swift版页面路由, 组件化过程中快速页面解耦.
242 |
243 | #### KVO@
244 |
245 | * [Hanson](https://github.com/blendle/Hanson) 轻量级的KVO
246 |
247 | #### 版本管理@
248 |
249 | * [Carthage](https://github.com/Carthage/Carthage) - 非常好用的类似CocoaPods的依赖库管理工具.
250 | * [CocoaPods](https://github.com/CocoaPods/CocoaPods) - 非常好用的依赖库管理工具.
251 | * [Sword](https://github.com/Azoy/Sword) - Discord library for Swift http://sword.azoy.me.
252 |
253 | #### 混合开发@
254 |
255 | * [SwiftPython](https://github.com/johnno1962/SwiftPython) - Experiments in bridging Swift to Python.
256 | * [hera](https://github.com/weidian-inc/hera) - Hera 是一个用小程序方式来写跨平台应用的开发框架,使用它可以让你的小程序除了在微信上运行,还可以打包成 Android 、 iOS应用,以及以h5的方式跑在浏览器端.
257 |
258 | #### 设计模式@
259 |
260 | * [Receiver](https://github.com/RuiAAPeres/Receiver) - Swift µframework implementing the Observer pattern 📡 .
261 |
262 | #### rumtime@
263 |
264 | * [swift-corelibs-foundation](https://github.com/apple/swift-corelibs-foundation/) CFRunLoopRef源码.
265 |
266 | #### 安全@
267 |
268 | * [CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift) - 不断发展的加密算法集合.
269 | * [RequestPermission](https://github.com/IvanVorobei/RequestPermission) - simple permission request with beautiful UI.
270 | * [Money](https://github.com/Flight-School/Money) - A precise, type-safe representation of a monetary amount in a given currency.
271 | * [NativeLogin](https://github.com/IvanVorobei/NativeLogin) - Authorization form in native iOS style.
272 | * [Permission.swift](https://github.com/delba/Permission) - 统一的 API 请求 iOS 本地设备及资源权限类库。
273 | * [Proposer](https://github.com/nixzhu/Proposer) - Proposer 用单个 API 处理 iOS 上的权限请求,以便使用前确认可访问“相册”、“相机”、“麦克风”、“通讯录”或“用户位置”.
274 |
275 | #### 服务端@
276 |
277 | * [Perfect](https://github.com/PerfectlySoft/Perfect) Server-side Swift. The Perfect core toolset and framework for Swift Developers. (For mobile back-end development, website and API development, and more…)
278 | * [PerfectTemplate](https://github.com/PerfectlySoft/PerfectTemplate) Empty Starter Project (for Perfect).
279 | * [vapor](https://github.com/vapor/vapor) - A server-side Swift web framework.
280 | * [SwiftQ](https://github.com/John-Connolly/SwiftQ) SwiftQ is a distributed task queue for server side swift applications.
281 | * [SwiftServerSide-Vapor](https://github.com/Jinxiansen/SwiftServerSide-Vapor) - Swift server open source projects based on the Swift 4.1 and Vapor 3 frameworks. (Swift 服务端开源项目).
282 |
283 | #### 网络@
284 | #### 网络请求@
285 |
286 | * [Alamofire](https://github.com/Alamofire/Alamofire) - 非常赞👍👍👍 Alamofire是AFNetworking的作者mattt新写的网络请求的swift库。[Alamofire 最佳实践](https://github.com/ipader/SwiftGuide/wiki/Alamofire%20%E6%9C%80%E4%BD%B3%E5%AE%9E%E8%B7%B5)
287 | * [Moya](https://github.com/Moya/Moya) - 对Alamofire的封装,使用枚举将网络层实现细节与页面逻辑代码分离,方便单元测试,支持stub测试,配合RxSwift食用更佳,[博客教程](http://www.hmttommy.com/2015/12/15/Moya/)
288 | * [SwiftRouter](https://github.com/skyline75489/SwiftRouter) - A URL Router for iOS, written in Swift 2.2 :large_orange_diamond:
289 | * [AlamofireObjectMapper.swift](https://github.com/tristanhimmelman/AlamofireObjectMapper) - 将Alamofire JSON响应数据 转为swift对象。
290 | * [RxAlamofire.swift](https://github.com/RxSwiftCommunity/RxAlamofire) - 为Alamofire提供函数响应式(FRP)调用接口,以优雅的方式使用Alamofire进行网络请求。
291 | * [socket.io-client-swift](https://github.com/socketio/socket.io-client-swift) - WebSockect 客户端类库。开放的通讯协议,有利于构建强大地跨平台应用。
292 | * [Transporter](https://github.com/nghialv/Transporter) - swift, 短小、精悍、易用的多文件(并发或顺序)上传和下载传输库。还支持后台运行、传输进程跟踪、暂停/续传/取消/重试控制等功能。
293 | * [Just](https://github.com/JustHTTP/Just) - 小而美的 HTTP 类。功能简单、直接、完整且健壮性高-- swift。
294 | * [Future](https://github.com/nghialv/Future) - 基于微框架设计思想的异步执行及结果响应类,代码即简单又干净-- swift。
295 | * [HFDownLoad](https://github.com/hongfenglt/HFDownLoad) - iOS开发网络篇之文件下载、大文件下载、断点下载:NSData方式、NSURLConnection方式、NSURLSession下载方式 [下载方式具体的思路、区别见Blog](http://blog.csdn.net/hongfengkt/article/details/48290561) 。
296 | * [Pitaya.swift](https://github.com/johnlui/Pitaya) - Pitaya 是纯 Swift 写的 iOS 网络库,支持 Basic Authorization、SSL 钢钉、HTTP raw body / JSON body、快速文件上传等特性,并通过内置 JSONNeverDie 实现了对 JSON 的完全支持,开箱即用。 [中文文档](https://github.com/johnlui/Pitaya/wiki/%E4%B8%AD%E6%96%87%E6%96%87%E6%A1%A3)
297 | * [starscream.swift](https://github.com/daltoniam/starscream) - starscream.swift:WebSocket客户端类库。
298 | * [SwiftNet.swift](https://github.com/FengDeng/SwiftNet) - 基于 RxSwift 和 Alamofire 的网络请求简易封装库。
299 | * [Networking.Swift](https://github.com/3lvis/Networking) - 使用简单、功能惊喜,基于 NSURLSession 的网络封装。
300 | * [EFInternetIndicator](https://github.com/ezefranca/EFInternetIndicator)swift 轻巧的一款 iOS 网络变更通知工具。
301 | * [SWNetworking](https://github.com/isamankumara/skywite) - Powerful high-level iOS, macOS and tvOS networking library. from the creator of SWNetworking 🔶
302 | * [Transporter](https://github.com/nghialv/Transporter) - A tiny library makes uploading and downloading easier. :large_orange_diamond:
303 | * [TRON](https://github.com/MLSDev/TRON) - Lightweight network abstraction layer, written on top of Alamofire :large_orange_diamond:
304 | * [Pitaya](https://github.com/johnlui/Pitaya) - A Swift HTTP / HTTPS networking library just incidentally execute on machines :large_orange_diamond:
305 | * [ws ☁️](https://github.com/freshOS/ws) - Elegant JSON WebService in Swift.:large_orange_diamond:
306 | * [Netdiag](https://github.com/qiniu/iOS-netdiag) - A network diagnosis library. Support Ping/TcpPing/Rtmp/TraceRoute/DNS/external IP/external DNS.
307 | * [AFNetworkingHelper](https://github.com/betacraft/AFNetworkingHelper) - A custom wrapper over AFNetworking library that we use inside RC extensively
308 | * [SwiftyZeroMQ](https://github.com/azawawi/SwiftyZeroMQ) - ZeroMQ Swift Bindings for iOS, macOS, tvOS and watchOS. :large_orange_diamond: ⌚
309 | * [Frisbee](https://github.com/ronanrodrigo/Frisbee) - Another network wrapper for URLSession. Built to be simple, small and easy to create tests at the network layer of your application.
310 | * [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.
311 | * [SolarNetwork](https://github.com/ThreeGayHub/SolarNetwork) - 基于Alamofire封装,揉和了Alamofire和Moya两者优点的一套简单易用的网络库。
312 |
313 | #### 网络聊天@
314 |
315 | * [MessageKit.swift](https://github.com/MessageKit/MessageKit) - 消息 UI 库 JSQMessagesViewController 的 Swift 版。
316 | * [jchat-swift](https://github.com/jpush/jchat-swift) - 一个聊天 App,具有完备的即时通讯功能,JChat 的功能基于极光 JMessage SDK 来开发。
317 |
318 | #### 网络测试@
319 |
320 | * [Reachability.swift](https://github.com/ashleymills/Reachability.swift) - 用于替换苹果的 Reachability 类,可以方便地检测当前是否联网以及具体的联网状态。
321 | * [NetReachability](https://github.com/crazypoo/SimpleCarrie) - swift2.0 简单的方法检查网络连接的连通性,提供通知中心集成接口。
322 | * [SimpleBS.swift](https://github.com/bin1991/SimpleBS) - 网络测试小工具。
323 |
324 | #### 网页框架@
325 |
326 | * [Perfect.swift](https://github.com/PerfectlySoft/Perfect) - Perfect 致力于 Swift 服务端应用,从打造专业应用服务器开始。[Swift服务端编程:Perfect项目上手指南](http://blog.csdn.net/kinfey/article/details/50644752)
327 | * [swift-http](https://github.com/huytd/swift-http) - Swift HTTP Server,又一个 Swift 服务器,最大的亮点是支持 Docker 部署。
328 | * [Swifton](https://github.com/necolt/Swifton) - Swifton是一个优秀的Swift on Rails 的Web Framework。
329 | * [Taylor.swift](https://github.com/izqui/Taylor) - Taylor一个swift的轻量级的http服务器的库。
330 | * [NetworkObjects.swift](https://github.com/colemancda/NetworkObjects) - NetworkObjects.swift轻量版HttpServer框架,跨平台解决方案。
331 | * [Kitura.swift](https://github.com/IBM-Swift/Kitura) - Kitura.swift:安装、使用步骤及文档最为清晰地来自 IBM Swift 开发组的开源 Web 服务器。此外,IBM 云服务 Bluemix 也为 Swift 打开通路。
332 |
333 | #### NetworkExtension@
334 |
335 | * [NEKit](https://github.com/zhuhaow/NEKit) 一个网络扩展工具库,A toolkit for Network Extension Framework
336 | * [SpechtLite](https://github.com/zhuhaow/SpechtLite) A rule-based proxy for macOS
337 |
338 | #### 网络解析@
339 |
340 | ##### CSV@
341 |
342 | * [CSwiftV](https://github.com/Daniel1of1/CSwiftV) - A csv parser written in swift conforming to rfc4180 :large_orange_diamond:
343 | * [SwiftCSV](https://github.com/naoty/SwiftCSV) - CSV parser for Swift :large_orange_diamond:
344 |
345 | ##### Json@
346 |
347 | * [SwiftyJSON](https://github.com/SwiftyJSON/SwiftyJSON) - The better way to deal with JSON data in Swift. :large_orange_diamond:.
348 | * [ObjectMapper](https://github.com/Hearst-DD/ObjectMapper) - 很赞 ObjectMapper 是一个基于 Swift 语言开发的能够让 JSON 与 Object 之间轻易转换的类库。通过 ObjectMapper 我们可以将 JSON 数据转换成 Model 对象或将 Model 对象转换成 JSON 数据。 Simple JSON Object mapping written in Swift.
349 | * [Decodable](https://github.com/Anviking/Decodable) - Swift 2 JSON parsing done (more) right :large_orange_diamond:.
350 | * [Jay](https://github.com/czechboy0/Jay) - Pure-Swift JSON parser & formatter. Linux & OS X ready. :large_orange_diamond:.
351 | * [XMLDictionary](https://github.com/nicklockwood/XMLDictionary) - ios与mac os平台下xml与NSDictionary相互转化开源类库.
352 | * [AEXML.swift](https://github.com/tadija/AEXML) - AEXML.swift简单又易于的XML解析类及示例.
353 | * [CFRuntime](https://github.com/CoderMJLee/MJExtension) - “Swift 版的 MJExtension,运行时、反射与一键字典模型互转”.
354 | * [protobuf-swift](https://github.com/alexeyxo/protobuf-swift) - Protocol Buffers 的 Swift 语言实现库。P.S. Protocol Buffers 是 Google 开源项目,主要功能是实现直接序列化结构化的对象数据,方便跨平台快速传递,开发者也可以直接修改 protobuf 中的数据。相比 XML 和 JSON,protobuf 解析更快,存储更小.
355 | * [JSONCodable](https://github.com/matthewcheok/JSONCodable) - 基于 Swift 2.0 新特性(Protocol Extensions and Error Handling)的JSON 解析类.
356 | * [JSONNeverDie.swift](https://github.com/johnlui/JSONNeverDie) - JSON 到 Model 类的自动映射工具.
357 | * [Fuzi.swift](https://github.com/cezheng/Fuzi) - Swift实现的轻量快速的 XML/HTML 解析器.
358 | * [SWXMLHash.swift](https://github.com/drmohundro/SWXMLHash) - 易用的 XML 解析类库。非常实用的“轮子”.
359 | * [YYModel](https://github.com/ibireme/YYModel) - 高性能的 iOS JSON 模型框架.
360 | * [Gloss](https://github.com/hkellaway/Gloss) - A shiny JSON parsing library in Swift ✨.
361 | * [TidyJSON.swift](https://github.com/benloong/TidyJSON) - TidyJSON.swift一款简单、易用、明了的 JSON 解析小类库.
362 | * [PMJSON.swift](https://github.com/postmates/PMJSON) - PMJSON.swift简单、实用、高效的 JSON 解析类库.
363 | * [Unbox.swift](https://github.com/JohnSundell/Unbox) - 极为易用、轻量,更少辅助代码的 JSON 解析类.
364 | * [Wrap.swift](https://github.com/JohnSundell/Wrap) - 方便、易用的对象转 JSON 类库.
365 | * [CollectionKit](https://github.com/SoySauceLab/CollectionKit) - A modern Swift framework for building reusable data-driven collection components.
366 | * [JASON](https://github.com/delba/JASON) - 高效的Json解析(Swift) Fast JSON parsing for Swift.
367 | * [JSONCodable](https://github.com/matthewcheok/JSONCodable) - Swift json编码解码三方库 Hassle-free JSON encoding and decoding in Swift.
368 | * [Coolie](https://github.com/nixzhu/Coolie) - Swift json转model的三方库 Coolie helps you to create models (& their constructors) from JSON file.
369 | * [Tailor](https://github.com/zenangst/Tailor) - 一个非常快和方便的对象映射Swift三方库 A super fast & convenient object mapper tailored for your needs.
370 | * [alexander](https://github.com/hodinkee/alexander) - 一个非常简洁的json处理三方库 An extremely simple JSON helper written in Swift.
371 | * [Freddy](https://github.com/bignerdranch/Freddy) - 一个可以重用的json解析库 A reusable framework for parsing JSON in Swift.
372 | * [mapper](https://github.com/lyft/mapper) - 一个json反序列化库 A JSON deserialization library for Swift.
373 | * [AlamofireJsonToObjects](https://github.com/evermeer/AlamofireJsonToObjects) - 一个将json data转为Swift对象的类扩展 An Alamofire extension which converts JSON response data into swift objects using EVReflection.
374 | * [Alembic](https://github.com/ra1028/Alembic) - 功能性的json解析库 Functional JSON parsing, mapping to objects, and serialize to JSON :large_orange_diamond:
375 | * [Wrap](https://github.com/JohnSundell/Wrap) - The easy to use Swift JSON encoder :large_orange_diamond:
376 | * [Arrow](https://github.com/freshOS/Arrow) - 一个Swift JSON解析库 JSON Parsing Library for Swift
377 | * [Genome](https://github.com/LoganWright/Genome) - 一个易用、多样、安全,包含错误映射的JSON转Model的Swift库. A simple, type safe, failure driven mapping library for serializing JSON to models in Swift 2.0 (Supports Linux)
378 | * [FeedKit](https://github.com/nmdias/FeedKit) - An RSS and Atom feed parser written in Swift :large_orange_diamond:
379 | * [typewriter](https://github.com/typwr/typewriter) - 客户端翻译服务端数据交换格式的代码翻译器.
380 |
381 | #### xml@
382 |
383 | * [AEXML](https://github.com/tadija/AEXML) - Simple and lightweight XML parser written in Swift. :large_orange_diamond:
384 |
385 | #### AutoLayout@
386 |
387 | * [Snap](https://github.com/SnapKit/SnapKit) - Snap是Masonry Auto Layout DSL的Swift版本,是一款轻量级的布局框架,使用了更良好的语法封装了AutoLayout。Snap支持iOS和OS X.
388 | * [Cartography](https://github.com/robb/Cartography) - 一个很赞的Auto Layout库.
389 | * [Neon](https://github.com/mamaral/Neon) - 功能强大的 UI 布局神器.
390 | * [TinyConstraints](https://github.com/roberthein/TinyConstraints) - TinyConstraints is the syntactic sugar that makes Auto Layout sweeter for human use.
391 | * [EasyPeasy](https://github.com/nakiostudio/EasyPeasy) - 编程方式自动布局框架库.
392 | * [TangramKit](https://github.com/youngsoft/TangramKit) - TangramKit is a powerful iOS UI framework implemented by Swift. 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,LayoutSizeClass to build your App 自动布局 UIView UITableView UICollectionView.
393 | * [layout](https://github.com/schibsted/layout) - A declarative UI framework for iOS.
394 | * [CassowarySwift](https://github.com/tribalworldwidelondon/CassowarySwift) - A Swift port of the Cassowary linear constraint solver.
395 | * [Windless](https://github.com/Interactive-Studio/Windless) - Windless makes it easy to implement invisible layout loading view.
396 | * [KeyboardLayoutGuide](https://github.com/freshOS/KeyboardLayoutGuide) - ⌨️ Apple's missing KeyboardLayoutGuide.
397 | * [Yalta](https://github.com/kean/Yalta) - An intuitive and powerful Auto Layout library.
398 |
399 | #### 数据存储@
400 |
401 | * [DataSources](https://github.com/muukii/DataSources) 💾 🔜📱 Type-safe data-driven List-UI Framework. (We can also use ASCollectionNode).
402 | * [Disk](https://github.com/saoudrizwan/Disk) Delightful framework for iOS to easily persist structs, images, and data.
403 | * [UserDefaultsStore](https://github.com/omaralbeik/UserDefaultsStore) - Why not use UserDefaults to store Codable objects 😉.
404 |
405 | #### 缓存处理@
406 | * [Cache.swift](https://github.com/soffes/Cache) - 一款简单、易用的缓存库。支持 MemoryCache, DiskCache 以及前两项组合的 MultiCache。
407 | * [Cache.swift](https://github.com/hyperoslo/Cache) - Nothing but Cache。
408 | * [AwesomeCache.swift](https://github.com/aschuch/AwesomeCache) - Delightful on-disk cache (written in Swift)。
409 | * [Track.swift](https://github.com/maquannene/Track) - 基于文件系统和链表的 Cache。分为 Disk 和 Memory,线程安全,支持 LRU 淘汰,性能尚可。
410 |
411 | #### CoreData@
412 |
413 | * [JSQCoreDataKit](https://github.com/jessesquires/JSQCoreDataKit) - A swifter Core Data stack :large_orange_diamond:
414 | * [Sync](https://github.com/3lvis/Sync) - :arrows_counterclockwise: Modern Swift JSON synchronization to Core Data :large_orange_diamond:
415 | * [AlecrimCoreData](https://github.com/Alecrim/AlecrimCoreData) - A powerful and simple Core Data wrapper framework written in Swift. :large_orange_diamond:
416 | * [AERecord](https://github.com/tadija/AERecord) - Super awesome Core Data wrapper in Swift. :large_orange_diamond:
417 | * [Graph](https://github.com/CosmicMind/Graph) - An elegant data-driven framework for CoreData in Swift. :large_orange_diamond:
418 | * [JSQCoreDataKit](https://github.com/jessesquires/JSQCoreDataKit) - A swifter Core Data stack :large_orange_diamond:
419 | * [DATAStack](https://github.com/3lvis/DATAStack) - 100% Swift Simple Boilerplate Free Core Data Stack. NSPersistentContainer. :large_orange_diamond:
420 | * [Cadmium](https://github.com/jmfieldman/cadmium) - A complete swift framework that wraps CoreData and helps facilitate best practices. :large_orange_diamond:
421 |
422 | #### 数据库@
423 |
424 | * [realm-cocoa](https://github.com/realm/realm-cocoa) 一个号称要代替Core Data & SQLite的用于移动端的数据库,非常不错👍👍 ,同时支持Objective-C.
425 | * [RealmIncrementalStore.swift](https://github.com/eure/RealmIncrementalStore) - RealmIncrementalStore.swift:集 Realm 数据库和 CoreData 对象模型两者优势的 Realm 数据库访问类库。
426 | * [Breeze](https://github.com/andrelind/Breeze) - 用Swift写的一个轻量级的CoreData管理工具,并且还支持iCloud 。
427 | * [AlecrimCoreData](https://github.com/Alecrim/AlecrimCoreData) - Swift,更容易地访问 CoreData 对象封装类库。除了 CRUD,还提供指针定位,强大的排序、筛选,异步数据获取,以及独立线程后台存取数据。
428 | * [SQLite.swift](https://github.com/stephencelis/SQLite.swift) - 纯swift实现的类型安全的SQLite3封装,数据存储和JSON解析是永恒的话题。
429 | * [fluent.swift](https://github.com/qutheory/fluent) - 纯swift实现的类型安全的SQLite3封装,数据存储和JSON解析是永恒的话题。
430 | * [swiftydb](http://www.appcoda.com/swiftydb/) - 是一个第三方 SQLite 工具,能够大大简化数据库操作。如果你不放心 Realm,那就用 SwiftyDB 吧。[使用教程](http://swift.gg/2016/05/17/swiftydb/) [demo](https://github.com/appcoda/SwiftyDB-Demo)
431 | * [Graph.swift](https://github.com/CosmicMind/Graph) - 设计新颖、使用简单基于 Core Data 的数据驱动框架库 (作者Daniel Dahan)。
432 | * [SwiftStore](https://github.com/hemantasapkota/SwiftStore) - Key-Value store for Swift backed by LevelDB :large_orange_diamond:
433 | * [Prephirences](https://github.com/phimage/Prephirences) - Prephirences is a Swift library that provides useful protocols and convenience methods to manage application preferences, configurations and app-state. :large_orange_diamond:
434 | * [SwiftyUserDefaults](https://github.com/radex/SwiftyUserDefaults) - Statically-typed NSUserDefaults. :large_orange_diamond:
435 | * [SugarRecord](https://github.com/carambalabs/SugarRecord) - Data persistence management library written in Swift 3.0 :large_orange_diamond:
436 | * [SQLite.swift](https://github.com/stephencelis/SQLite.swift) - A type-safe, Swift-language layer over SQLite3. :large_orange_diamond:
437 | * [GRDB.swift](https://github.com/groue/GRDB.swift) - A versatile SQLite toolkit for Swift, with WAL mode support :large_orange_diamond:
438 | * [Fluent](https://github.com/vapor/fluent) - Simple ActiveRecord implementation for working with your database in Swift. :large_orange_diamond:
439 | * [YapDatabaseExtensions](https://github.com/danthorpe/YapDatabaseExtensions) - YapDatabase extensions for use with Swift :large_orange_diamond:
440 | * [SwiftMongoDB](https://github.com/Danappelxx/SwiftMongoDB) - A MongoDB interface for Swift :large_orange_diamond:
441 | * [SwiftStore](https://github.com/hemantasapkota/SwiftStore) - Key-Value store for Swift backed by LevelDB :large_orange_diamond:
442 | * [MongoDB](https://github.com/PerfectlySoft/Perfect-MongoDB) - A Swift wrapper around the mongo-c client library, enabling access to MongoDB servers. Part of the
443 | * [SQLite](https://github.com/PerfectlySoft/Perfect-SQLite) - A Swift wrapper around the SQLite 3 client library, enabling access to SQLite servers. Part of the
444 | * [PersistDB](https://github.com/PersistX/PersistDB) - Projection-based Database Persistence in Swift.
445 | * [Perfect](https://github.com/PerfectlySoft/Perfect) project, but stand-alone. SPM and Swift 3 support.
446 | * [MySQL](https://github.com/PerfectlySoft/Perfect-MySQL) - A Swift wrapper around the MySQL client library, enabling access to MySQL servers. Part of the
447 | * [Redis](https://github.com/PerfectlySoft/Perfect-Redis) - A Swift wrapper around the Redis client library, enabling access to Redis. Part of the
448 | * [PostgreSQL](https://github.com/PerfectlySoft/Perfect-PostgreSQL) - A Swift wrapper around the libpq client library, enabling access to PostgreSQL servers. Part of the
449 | * [FileMaker](https://github.com/PerfectlySoft/Perfect-FileMaker) - A Swift wrapper around the FileMaker XML Web publishing interface, enabling access to FileMaker servers. Part of the
450 |
451 | #### 文件管理@
452 |
453 | * [AppFolder](https://github.com/dreymonde/AppFolder) - Never use NSSearchPathForDirectoriesInDomains again.
454 |
455 | #### 钥匙链@
456 |
457 | * [EllipticCurveKeyPair](https://github.com/agens-no/EllipticCurveKeyPair) - Sign, verify, encrypt and decrypt using the Secure Enclave.
458 |
459 | #### 多媒体@
460 | #### 相机@
461 |
462 | * [CameraManager](https://github.com/imaginary-cloud/CameraManager) - 相机管理封装类库。看着极好用的样子----swift。
463 | * [SkfSwiftCammer](https://github.com/wubianxiaoxian/SkfSwiftCammer) - 一个相机demo,在oc里面调用了swift。
464 | * [TLStoryCamera](https://github.com/timelessg/TLStoryCamera) 仿照instagramStory & WeiBoStory。可以在拍摄视频后贴图,贴字,涂鸦。
465 |
466 | #### 二维码@
467 |
468 | * [EFQRCode](https://github.com/EyreFree/EFQRCode) - 快速生成炫酷的二维码.
469 | * [ZFScan](https://github.com/Zirkfied/ZFScan) - 仿微信 二维码/条形码 扫描。
470 | * [QRCodeReader.swift](https://github.com/yannickl/QRCodeReader.swift) - QRCodeReader.swift一款简单的 QR 二维码阅读组件及示例,提供前后相机切换功能。
471 | * [swiftScan](https://github.com/MxABC/swiftScan) - 具有丰富功能的二维码扫描组件及类库。[对应OC版本LBXScan](https://github.com/MxABC/LBXScan).
472 | * [QR-Code-Generator.swift](https://github.com/appcoda/QR-Code-Generator) - 生成二维码.
473 | * [LLPhotoBrowser](https://github.com/LvJianfeng/LLPhotoBrowser) - Swift3图片浏览库,支持网络图,本地图,UIImage同时使用,支持识别二维码,支持横屏看图,支持长按弹出功能窗口.
474 | * [ImageDetect](https://github.com/Feghal/ImageDetect) - ✂️ Detect and crop faces, barcodes and texts in image with iOS 11 Vision api.
475 |
476 | #### PDF@
477 |
478 | * [FolioReaderKit](https://github.com/FolioReader/FolioReaderKit) - 非常棒👍的阅读器框架,支持自定义字体、字体大小、文本高亮、列表编辑删除、主题、白天夜间模式等等非常多的特性。
479 | * [PDFGenerator](https://github.com/sgr-ksmt/PDFGenerator) - 一个简单的PDF生成器.
480 | * [SimplePDF](https://github.com/nRewik/SimplePDF) - 轻松创建一个简单的PDF文件或者Data,能够增加文本、图片、空格、线、表格,支持页面布局,调整内容样式.
481 | * [PSPDFKit](https://pspdfkit.com/) - Render PDF, add/edit annotations, fill forms, add/edit pages, view/create digital signatures.
482 | * [TPPDF](https://github.com/Techprimate/TPPDF) - 一个容易使用的创建PDF的库
483 | * [Reader](https://github.com/vfr/Reader) - PDF Reader Core for iOS.
484 | * [UIView 2 PDF](https://github.com/RobertAPhillips/UIView_2_PDF) - PDF generator using UIViews or UIViews with an associated XIB
485 | * [FolioReaderKit](https://github.com/FolioReader/FolioReaderKit) - A Swift ePub reader and parser framework for iOS. :large_orange_diamond:
486 | * [PDFGenerator](https://github.com/sgr-ksmt/PDFGenerator) - A simple Generator of PDF in Swift. Generate PDF from view(s) or image(s). :large_orange_diamond:
487 | * [SimplePDF](https://github.com/nRewik/SimplePDF) - Create a simple PDF effortlessly. :large_orange_diamond:
488 | * [SwiftPDFGenerator](https://github.com/kayoslab/SwiftPDFGenerator) - PDF generator using UIViews; Swift Version of 'UIView 2 PDF'. :large_orange_diamond:
489 | * [PSPDFKit](https://pspdfkit.com/) - Render PDF, add/edit annotations, fill forms, add/edit pages, view/create digital signatures.
490 | * [TPPDF](https://github.com/Techprimate/TPPDF) - Generate PDF using commands and automatic layout. :large_orange_diamond:
491 |
492 | #### GIF@
493 |
494 | * [AImage](https://github.com/wangjwchn/AImage) - A animated GIF&APNG engine for iOS in Swift with low memory & cpu usage.Optimized for Multi-Image case.:large_orange_diamond:
495 | * [gifu](https://github.com/kaishin/gifu) - Highly performant animated GIF support for iOS in Swift :large_orange_diamond:
496 |
497 | #### 音频@
498 |
499 | * [recordDemo.swift](https://github.com/lfb-cd/recordDemo) - 一个Swift语言实现直接可以用的录音Demo,[实现说明](http://www.jianshu.com/p/f0b88355d7cb).
500 | * [Swift-Radio-Pro](https://github.com/swiftcodex/Swift-Radio-Pro) - 集成 LastFM 的专业电台应用(基于 Swift 2.0).
501 | * [AudioKit](https://github.com/audiokit/AudioKit) - 一个非常强大的音频合成、加工、分析平台工具,支持iOS、macOS、tvOS.
502 | * [DeckTransition](https://github.com/HarshilShah/DeckTransition) - A library to recreate the iOS 10 Apple Music now playing transition.
503 | * [AudioBus](https://developer.audiob.us/) - 下一代的音频路由 Add Next Generation Live App-to-App Audio Routing.
504 | * [Cephalopod](https://github.com/evgenyneu/Cephalopod) - 一个基于AVIudioPlayer的音效推子,支持 iOS,tvOS和macOS.
505 | * [Chirp](https://github.com/trifl/Chirp) - 播放和删除声音最容易的方法.
506 | * [Beethoven](https://github.com/vadymmarkov/Beethoven) - 音高检测大师.
507 | * [AudioPlayerSwift]( https://github.com/tbaranes/AudioPlayerSwift) - 一个使音频播放更简单的类AudioPlayer,支持 iOS, macOS and tvOS apps.
508 | * [AudioPlayer](https://github.com/delannoyk/AudioPlayer) - 一个基于AVPlayer的播放本地和网络音频的库.
509 | * [TuningFork](https://github.com/comyar/TuningFork) - 简单的调音师.
510 | * [MusicKit](https://github.com/benzguo/MusicKit) - 一个合成和转换音乐的框架.
511 | * [TheAmazingAudioEngine2](https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine2) - 一个惊人的、精致的用于音频App的音频库.
512 | * [InteractivePlayerView](https://github.com/AhmettKeskin/InteractivePlayerView) - 自定义音乐播放View.
513 | * [ESTMusicIndicator](https://github.com/Aufree/ESTMusicIndicator) - 很酷的音乐动画指示View.
514 | * [SwiftySound](https://github.com/adamcichy/SwiftySound) - 一个让你一行代码就可以播放音频的三方库.
515 | * [ROMPlayer](https://github.com/AudioKit/ROMPlayer) - AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player.
516 |
517 | #### 媒体流@
518 |
519 | * [lf.swift](https://github.com/shogo4405/lf.swift) - 相机和麦克风流媒体库,支持RTMP,HLS for iOS,macOS。
520 | * [StreamingKit](https://github.com/tumtumtum/StreamingKit) - A fast and extensible gapless AudioPlayer/AudioStreamer for OSX and iOS.
521 | * [Jukebox](https://github.com/teodorpatras/Jukebox) - 音频播放器,可播放本地和网络音频流
522 | * [Airstream](https://github.com/qasim/Airstream) - 一个基于AirPlay在Apple devices之间进行音频流传输的库,比如iphone音乐在Apple TV上面播放。
523 | * [OTAcceleratorCore](https://github.com/opentok/accelerator-core-ios) - 通过Tokbox将音频/视频(屏幕共享)轻松集成到任何iOS应用程序.包括视频通话、语音通话等。
524 |
525 | #### VR@
526 |
527 | * [swift-360-videos](https://github.com/team-pie/DDDKit) - 360度视频播放器,以swift3编写的iOS - SceneKit的一个子集. Pure swift (no SceneKit) 3D library with focus on video and 360.
528 |
529 | #### AR@
530 |
531 | * [awesome-arkit](https://github.com/olucurious/awesome-arkit) - 👍👍👍 A curated list of awesome ARKit projects and resources.
532 | * [ARuler](https://github.com/duzexu/ARuler) - Mesure distance using apple ARKit.
533 | * [Findme](https://github.com/mmoaay/Findme) - An ARKit App that can help your friends to find you.
534 | * [ARKit-CoreLocation](https://github.com/ProjectDent/ARKit-CoreLocation) - Combines the high accuracy of AR with the scale of GPS data.
535 | * [ARCharts](https://github.com/Boris-Em/ARCharts) - Lovely Augmented Reality Charts for iOS - Built with ARKit.
536 | * [arkit-smb-homage](https://github.com/bjarnel/arkit-smb-homage) - An implementation of a Super Mario Bros-like game in augmented reality with ARKit and SceneKit.
537 | * [ARKit-Sampler](https://github.com/shu223/ARKit-Sampler) - Code examples for ARKit.
538 | * [ARVideoKit](https://github.com/AFathi/ARVideoKit) - Capture & record ARKit videos 📹, photos 🌄, Live Photos 🎇, and GIFs 🎆..
539 | * [SmileToUnlock](https://github.com/rsrbk/SmileToUnlock) - This library uses ARKit Face Tracking in order to catch a user's smile.
540 |
541 | #### 全景@
542 |
543 | * [BSPanoramaView](https://github.com/bestswifter/BSPanoramaView) - 超轻量级的 iOS 全景图组件.
544 |
545 | #### 蓝牙@
546 |
547 | * [BabyBluetooth](https://github.com/coolnameismy/BabyBluetooth) - 是一个非常容易使用的蓝牙库, 适用于 iOS 和 Mac OS, 基于原生 CoreBluetooth 框架封装, 可以帮开发者们更简单地使用 CoreBluetooth API, 使用链式方法体, 使得代码更简洁、优雅。[iOS蓝牙开发(四):BabyBluetooth蓝牙库介绍](http://www.cocoachina.com/ios/20160219/15301.html)
548 | * [RxBluetoothKit.swift](https://github.com/Polidea/RxBluetoothKit) - 基于 RxSwift 的蓝牙通讯库。
549 | * [BabyBluetooth](https://github.com/coolnameismy/BabyBluetooth) - The easiest way to use Bluetooth (BLE) in iOS/MacOS.
550 |
551 | #### 视频@
552 | #### 视频播放@
553 |
554 | * [MobilePlayer](https://github.com/mobileplayer/mobileplayer-ios) - 一个强大、可自定义的媒体播放器.
555 | * [Periscope-VideoViewController.swift](https://github.com/gontovnik/Periscope-VideoViewController) - 简洁实用的视频快进、倒带控制视图类库.
556 | * [MPMoviePlayerController-Subtitles](https://github.com/mhergon/MPMoviePlayerController-Subtitles) - 一个播放STR文件的简单方法.
557 | * [Player](https://github.com/piemonte/Player) - ▶️ 一个简单方法播放视频和流媒体的播放器,支持iOS和tvOS.
558 | * [YoutubeKit](https://github.com/rinov/YoutubeKit) - YoutubeKit is a video player that fully supports Youtube IFrame API and YoutubeDataAPI for easily create a Youtube app.
559 | * [mobileplayer-ios.swift](https://github.com/mobileplayer/mobileplayer-ios) - 很不错的高度可定制播放器项目.
560 | * [BMPlayer.swift](https://github.com/BrikerMan/BMPlayer) - 基于 AVPlayer 使用 Swift 封装的视频播放器,方便快速集成,支持横屏、竖屏,上下滑动调节音量、屏幕亮度,左右滑动调节播放进度.
561 | * [PlayerView](https://github.com/davidlondono/PlayerView) - 一个使用代理和AVPlayer的播放View.
562 | * [VGPlayer](https://github.com/VeinGuo/VGPlayer) - A simple iOS video player by Vein.
563 | * [Swift-YouTube-Player](https://github.com/gilesvangruisen/Swift-YouTube-Player) - Swift library for embedding and controlling YouTube videos in your iOS applications.
564 | * [PlayerKit](https://github.com/vimeo/PlayerKit)
565 | * [DDDKit](https://github.com/gsabran/DDDKit) - 360 video player for iOS written in swift - a subset of SceneKit that works.
566 |
567 | #### 视频处理@
568 |
569 | * [PryntTrimmerView](https://github.com/prynt/PryntTrimmerView) - A set of tools to trim, crop and select frames inside a video.
570 |
571 | ####图像@
572 |
573 | * [FlagKit](https://github.com/madebybowtie/FlagKit) - 漂亮的Icon Beautiful flag icons for usage in apps and on the web. :large_orange_diamond:
574 |
575 | #### 人脸识别@
576 |
577 | * [APKenBurnsView](https://github.com/Alterplay/APKenBurnsView) - 面部识别
578 | * [AAFaceDetection](https://github.com/aaronabentheuer/AAFaceDetection) - AAFaceDetection--swift,简单、实用的面部识别封装库。虽然该技术从 iOS 5 发展,不过真正有趣的应用还不多。
579 |
580 | #### 图像识别@
581 |
582 | * [ChineseIDCardOCR](https://github.com/KevinGong2013/ChineseIDCardOCR) 🇨🇳中国二代身份证光学识别
583 |
584 | #### 图像处理@
585 |
586 | * [GPUImage2.swift](https://github.com/BradLarson/GPUImage2) - Swift 版基于 GPU 图像和视频处理框架库。
587 | * [Sharaku](https://github.com/makomori/Sharaku) 类似Instagram的图片滤镜库 Image filtering UI library like Instagram.
588 | * [UIImageColors](https://github.com/jathu/UIImageColors) - iTunes style color fetcher for UIImage.
589 | * [FaceAware](https://github.com/BeauNouvelle/FaceAware) - 一个焦点显示图片面部部分的UIImageView的扩展.
590 | * [JHFilterDemo](https://github.com/China131/JHFilterDemo) 图片滤镜生成器
591 | * [ComplimentaryGradientView](https://github.com/gkye/ComplimentaryGradientView) - 创建颜色渐变和颜色突出显示的库.
592 | * [SnapSliderFilters](https://github.com/pauljeannot/SnapSliderFilters) 给图像加贴图、文字的类似阅后即焚的功能
593 | * [SABlurImageView](https://github.com/marty-suzuki/SABlurImageView) - 很容易的给Image添加模糊效果和动画,只需要两个方法
594 | * [Filterpedia.swift](https://github.com/FlexMonkey/Filterpedia) - 强大的图片滤镜库演示。
595 | * [Concorde](https://github.com/contentful-labs/Concorde/) - 下载和编码JPEG图片.
596 | * [core-image-explorer](https://github.com/objcio/issue-21-core-image-explorer) - Core Image 滤镜处理图片-- swift ,[Core Image 介绍](http://objccn.io/issue-21-6/)。
597 | * [CTPanoramaView](https://github.com/scihant/CTPanoramaView) - 显示球面、圆柱形的摄像.
598 | * [Toucan](https://github.com/gavinbunney/Toucan) - 非常不错的图片处理库,支持图片裁剪、圆角、尺寸调整等.
599 | * [JLStickerTextView](https://github.com/luiyezheng/JLStickerTextView) - 一个给UIImageView添加一个、多个Label的库,并且可以对其进行编辑、旋转、大小调整.
600 | * [YUCIHighPassSkinSmoothing](https://github.com/YuAo/YUCIHighPassSkinSmoothing) -using Apple's Core Image Framework 实现的平滑的美化图片的库.
601 | * [SwiftyAvatar](https://github.com/dkalaitzidis/SwiftyAvatar) - 一个创建圆形图片的UIImageView类.
602 | * [JMCMarchingAnts](https://github.com/izotx/JMCMarchingAnts) - Library that lets you add marching ants (animated) selection to the edges of the images.
603 | * [ShinpuruImage](https://github.com/FlexMonkey/ShinpuruImage) - 一个图片过滤的语法糖.
604 | * [TinyCrayon](https://github.com/TinyCrayon/TinyCrayon-iOS-SDK) - 一个智能、易用的图片裁剪、Image markingSDK
605 | * [ZoomTransition](https://github.com/tristanhimmelman/ZoomTransition) - swift, 通过手势操控图片的放大、缩小、旋转等自由变化效果的组件及示例。
606 | * [AFImageHelper](https://github.com/melvitax/AFImageHelper) - swift,一套针对 UIImage 和 UIImageView 的实用扩展库,功能包含填色和渐变、裁剪、缩放以及具有缓存机制的在线图片获取。
607 | * [PinterestSwift](https://github.com/demonnico/PinterestSwift) - swift,Pinterest 风格图片缩放、切换示例。
608 | * [Nuke.swift](https://github.com/kean/Nuke) - 完整、强大、实用的图片管理类库。主要功能包括可定制装载,缓存,滤镜及尺寸变换。
609 | * [SwViewCapture.swift](https://github.com/startry/SwViewCapture) - SwViewCapture.swift一个用起来还不错的iOS截图库.(支持截取所有内容, 适用于所有ScrollView组成的视图, 包括WebView)
610 | * [CartoonEyes.swift](https://github.com/FlexMonkey/CartoonEyes) - 前置摄像头捕获图像后,采用 Core Image 脸部识别 CIDetector 和漫画效果滤镜复合出卡通效果眼睛。
611 |
612 | #### 图像缓存@
613 |
614 | * [Kingfisher](https://github.com/onevcat/Kingfisher) - 👍👍👍 一个轻量级的纯粹的用于从web下载和缓存图片的Swift库.
615 | * [HanekeSwift](https://github.com/Haneke/HanekeSwift) - 一个用于iOS的轻量级通用的高速缓存库,使用Swift编写,对图像有特别优化.
616 | * [MWPhotoBrowser](https://github.com/mwaterfall/MWPhotoBrowser) - 一个非常赞,非常简单的图片、视频浏览库,网格状的样式.
617 | * [MapleBacon](https://github.com/zalando-incubator/MapleBacon) - 一个图片下载、缓存库
618 | * [ImageViewer](https://github.com/MailOnline/ImageViewer) - 类似Twitter的图片查看器.
619 | * [Moa](https://github.com/evgenyneu/moa) - 一个非常棒的图片下载的扩展
620 | * [Nuke](https://github.com/kean/Nuke) - 一个强大的图片加载、缓存库.
621 | * [Concorde](https://github.com/contentful-labs/Concorde) - swift, Concorde, 一个可用于下载和解码渐进式 JPEG 的库, 可用来改善应用的用户体验。
622 | * [KFSwiftImageLoader](https://github.com/kiavashfaisali/KFSwiftImageLoader) - 一个高性能的、轻量级的web图片异步下载和缓存库.
623 | * [ImageLoaderSwift](https://github.com/hirohisa/ImageLoaderSwift) - 一个轻量级的快速加载图片的库.
624 | * [ImageScout](https://github.com/kaishin/ImageScout) - 一个预知远程图片尺寸的库,支持图片下载,支持PNG, GIF, and JPEG.
625 | * [PASImageView](https://github.com/abiaad/PASImageView) - 一个圆形的异步图片加载、缓存库.
626 | * [Navi](https://github.com/nixzhu/Navi) - 头像缓存.
627 | * [Imaginary](https://github.com/hyperoslo/Imaginary) - 远程图片异步下载,缓存.
628 | * [Vulcan](https://github.com/jinSasaki/Vulcan) - 带有优先级的多图下载.
629 |
630 | #### 图像浏览@
631 |
632 | * [NYTPhotoViewer](https://github.com/NYTimes/NYTPhotoViewer) - 图片浏览库,支持图片点击缩放、标题、多选、缩放动画等.
633 | * [IDMPhotoBrowser](https://github.com/thiagoperes/IDMPhotoBrowser) - 照片浏览,支持猛击消失等.
634 | * [ImagePickerSheetController](https://github.com/lbrndnr/ImagePickerSheetController) - 流畅、遍历的照片选择器.
635 | * [Agrume](https://github.com/JanGorman/Agrume) - 一个图片查看库
636 | * [SwiftPhotoGallery](https://github.com/Inspirato/SwiftPhotoGallery) - 一个简单的、全屏显示图片的库,支持缩放、手势、单击关闭、Twitter的关闭风格、Includes a customizable page indicator 等等.
637 | * [ImageSlideshow](https://github.com/zvonicek/ImageSlideshow) - 图片幻灯片和图片轮播器.
638 | * [react-native-image-crop-picker](https://github.com/ivpusic/react-native-image-crop-picker) iOS/Android image picker with support for camera, configurable compression, multiple images and cropping
639 | * [CDFlipView](https://github.com/jibeex/CDFlipView) - 多组图片的翻转的库, A view that takes a set of images, make transition from one to another by using flipping effects.
640 | * [TGLParallaxCarousel](https://github.com/taglia3/TGLParallaxCarousel) - 一个轻量级的3D线性旋转木马.
641 | * [Lightbox](https://github.com/hyperoslo/Lightbox) - 一个方便的图片查看器.
642 | * [AvatarImageView](https://github.com/ayushn21/AvatarImageView) - AvatarImageView是UIImageView的一个可定制的子类,旨在显示用户的个人资料图片。 如果没有提供个人资料图片,则会以随机背景颜色返回到用户的缩写。
643 | * [FacebookImagePicker](https://github.com/terflogag/FacebookImagePicker) - 类似Facebook album photo picker 的照片选择器
644 | * [PhotoStackView-Swift](https://github.com/ijoyc/PhotoStackView-Swift) - PhotoStackView——照片叠放视图,[使用说明](http://blog.csdn.net/u013604612/article/details/46336657)。
645 | * [MPParallaxView](https://github.com/DroidsOnRoids/MPParallaxView) - 是用 Swift 写的类似 Apple TV Parallax 效果的视图。
646 | * [SDECollectionViewAlbumTransition](https://github.com/seedante/SDECollectionViewAlbumTransition) - 用自定义的 push 和 pop 实现了有趣的 iOS 相册翻开动画效果。
647 | * [PagingView.swift](https://github.com/KyoheiG3/PagingView) - 注重细节的自动布局分页视图组件。
648 | * [DouBanMeinv.swift](https://github.com/luzefeng/DouBanMeinv) - 抓取豆瓣美女图片,瀑布流显示。
649 | * [preview-transition.swift](https://github.com/Ramotion/preview-transition) - 通过向导式代码实现步骤,实现完整、自然流畅的图片预览及转场功能。
650 | * [Gemini](https://github.com/shoheiyokoyama/Gemini) Gemini is rich scroll based animation framework for iOS, written in Swift.
651 |
652 | #### 相册@
653 |
654 | * [DKImagePickerController](https://github.com/zhangao0086/DKImagePickerController) 相册选取
655 | * [TLPhotoPicker](https://github.com/tilltue/TLPhotoPicker) 类似facebook的一个相册多图选取框架.
656 | * [SKPhotoBrowser](https://github.com/suzuki-0000/SKPhotoBrowser) Simple PhotoBrowser/Viewer inspired by facebook, twitter photo browsers written by swift.
657 | * [MediaBrowser](https://github.com/younatics/MediaBrowser) — 照片/视频浏览器,支持UIImage对象、PHAsset对象、资源库URL、网络图像/视频、本地文件.
658 | * [ImagePicker](https://github.com/hyperoslo/ImagePicker) - Reinventing the way ImagePicker works.
659 |
660 | #### 数据结构/算法@
661 |
662 | * [swift-algorithm-club](https://github.com/raywenderlich/swift-algorithm-club) - 很多流行的算法和数据结构的具体实现,非常赞👍👍👍 .
663 | * [SwiftSortedList](https://github.com/bemindinteractive/SwiftSortedList) - A sorted list implementation written in Swift :large_orange_diamond:
664 | * [BTree](https://github.com/attaswift/BTree) - Fast ordered collections for Swift using in-memory B-trees :large_orange_diamond:
665 | * [SwiftStructures](https://github.com/waynewbishop/SwiftStructures) - Examples of commonly used data structures and algorithms in Swift. :large_orange_diamond:
666 | * [diff](https://github.com/soffes/diff) - Simple diff library in pure Swift :large_orange_diamond:
667 | * [Dollar](https://github.com/ankurp/Dollar) - A functional tool-belt for Swift Language similar to Lo-Dash or Underscore.js in Javascript https://www.dollarswift.org/. :large_orange_diamond:
668 | * [Result](https://github.com/antitypical/Result) - Swift type modeling the success/failure of arbitrary operations. :large_orange_diamond:
669 | * [Buffer](https://github.com/alexdrone/Buffer) - Swift μ-framework for efficient array diffs, collection observation and cell configuration. :large_orange_diamond:
670 | * [SwiftGraph](https://github.com/davecom/SwiftGraph) - Graph data structure and utility functions in pure Swift. :large_orange_diamond:
671 | * [SwiftPriorityQueue](https://github.com/davecom/SwiftPriorityQueue) - A priority queue with a classic binary heap implementation in pure Swift. :large_orange_diamond:
672 | * [HeckelDiff](https://github.com/mcudich/HeckelDiff) - A fast Swift diffing library. :large_orange_diamond:
673 | * [Dekoter](https://github.com/artemstepanenko/Dekoter) - `NSCoding`'s counterpart for Swift structs. :large_orange_diamond:
674 |
675 | #### 动画@
676 |
677 | * [ViewAnimator](https://github.com/marcosgriselli/ViewAnimator) - ViewAnimator brings your UI to life with just one line.
678 | * [FleaMarket](https://github.com/SunLiner/FleaMarket) - "咸鱼"新特性-视频动画.
679 | * [fave-button](https://github.com/xhamr/fave-button) - 给button增加了很多可爱的动画.
680 | * [Sica](https://github.com/cats-oss/Sica) - Simple Interface Core Animation. Run type-safe animation sequencially or parallelly.
681 | * [UIWindowTransitions](https://github.com/malcommac/UIWindowTransitions) - Animated transitions for UIWindow's rootViewController property.
682 | * [Spring](https://github.com/MengTo/Spring) - A library to simplify iOS animations in Swift.
683 | * [LoginCritter](https://github.com/cgoldsby/LoginCritter) - An animated avatar that responds to text field interactions.
684 |
685 | #### 转场动画@
686 |
687 | * [Hero](https://github.com/lkzhao/Hero) - 非常👍👍👍 的转场动画库.
688 | * [EasyTransitions](https://github.com/marcosgriselli/EasyTransitions) - A simple way to create custom interactive UIViewController transitions.
689 |
690 | #### 特效@
691 |
692 | * [Pastel](https://github.com/cruisediary/Pastel) 类似Instagram的梯度背景色界面动画效果. 🎨 Gradient animation effect like Instagram
693 |
694 | #### 侧滑与右滑返回手势@
695 |
696 | * [SideMenu](https://github.com/Yalantis/Side-Menu.iOS/tree/master/SideMenu) - swift实现,一款带动画效果可定制 Slide Menu,可以学习其动画实现思路。P.S. 对于Hamburger式菜单,虽然很常用,不过,苹果并不鼓励使用,甚至有开发小组对其弊病用自家上线应用前后数据对比进行了抨击。
697 | * [QQConfiguration](https://github.com/shinept/QQConfiguration) - swift,QQ-iPhone端框架,左侧菜单栏拖动手势。
698 | * [SwiftPages](https://github.com/GabrielAlva/SwiftPages) - 高可定制类似 Instagram 视图滑动切换功能类库。API 简单、易用。
699 | * [FlowingMenu.swift](https://github.com/yannickl/FlowingMenu) - 菜单如此出场方式(橡皮筋弹跳式动画)好玩又有趣。
700 |
701 | #### gif动画@
702 |
703 | * [YLGIFImage-Swift](https://github.com/liyong03/YLGIFImage-Swift) - YLGIFImage-Swift。
704 | * [gifu.Swift](https://github.com/kaishin/gifu) - gifu.Swift高性能GIF显示类库。
705 | * [droptogif](https://github.com/mortenjust/droptogif) - droptogif视频拖拽到应用窗口后自动转换为 GIF 动画(其转换进程动画效果也超赞)。
706 | * [JWAnimatedImage.swift](https://github.com/wangjwchn/JWAnimatedImage) - JWAnimatedImage.swift集中了目前主流的 GIF 显示库(如 FLAnimatedImage,Gifu 等)的优点,进行重构,代码短小精悍。而且使用了新的 frame 提取算法。
707 | * [SwiftyGif](https://github.com/kirualex/SwiftyGif) - 高性能 Gif 播放引擎。
708 | * [PHImageKit.swift](https://github.com/producthunt/PHImageKit) - 出自 Product Hunter 开发小组的带下载、缓存的 GIF 播放组件库。使用简单又方便。
709 |
710 | #### 其他动画@
711 |
712 | * [GoogleNewsStandAnimation](https://github.com/AbhimanyuForiOS/GoogleNewsStandAnimation) It is same like Google News Stand Animation with Customise Configuration file in Swift iOS Technology.
713 | * [popping](https://github.com/schneiderandre/popping) - popping是一个POP 使用实例工程
714 | * [JHChainableAnimations](https://github.com/jhurray/JHChainableAnimations) 一个容易读,和使用的链式动画库.同时支持Objective-C
715 | * [PopMenu](https://github.com/xhzengAIB/PopMenu) - 用POP动画引擎写的Sina微博的Menu菜单。
716 | * [Spring](https://github.com/MengTo/Spring) - Spring是一个Swift编写的开源库,可简化Swift编写的iOS动画。支持shake、pop、morph、squeeze、wobble、swing、flipX、flipY、fall、squeezeLeft、squeezeRight以及squeezeDown等多种动画形式,用 IBDesignable 让使用者可以在 Xcode 中快速设置动画效果。
717 | * [JGTransitionCollectionView](https://github.com/JayGajjar/JGTransitionCollectionView) - swift,基于集合视图扩展实现完成自动布局及单元项 Flip式动画效果(效果很赞)。组件使用方便、自然(只需设置集合视图数据源的标准方式即可)。
718 | * [KYShareMenu](https://github.com/KittenYang/KYShareMenu) - 带弹性动画的分享菜单。
719 | * [BuildAnInfiniteCarousel](https://github.com/johnlui/Swift-On-iOS/tree/master/BuildAnInfiniteCarousel) - 自己动手造无限循环图片轮播,[教程](https://autolayout.club/2015/10/29/%E8%87%AA%E5%B7%B1%E5%8A%A8%E6%89%8B%E9%80%A0%E6%97%A0%E9%99%90%E5%BE%AA%E7%8E%AF%E5%9B%BE%E7%89%87%E8%BD%AE%E6%92%AD/)。
720 | * [LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) - iOS图片轮播(图片循环播放), 支持文本图片结合,支持图片数据的延时加载,支持StoryBoard,支持本地图片显示及与网络图的混合显示
721 | * [tispr-card-stack](https://github.com/tispr/tispr-card-stack) - swift 卡片风格动画切换组件及完整交互示例。
722 | * [ZLSwipeableViewSwift](https://github.com/zhxnlai/ZLSwipeableViewSwift) - swift 卡片堆叠效果的实现(ZLSwipeableView)】可实现类似Tinder和Potluck应用程序的卡片堆叠效果,该项目基于[ZLSwipeableView objective-c](https://github.com/zhxnlai/ZLSwipeableView/)实现。1.自定义动画。2.自定义滑动切换。3.自定义方向。4.撤销。
723 | * [Koloda](https://github.com/Yalantis/Koloda) - 基于卡片的 Tinder-style 动画效果示例。精细绝人。更赞的是额外附了详细开发教程 How We Built Tinder-Like Koloda Animation in Swift [网页链接](https://yalantis.com/blog/how-we-built-tinder-like-koloda-in-swift/) 。Yalantis 出品动画程序款款精品。
724 | * [KDIntroView](https://github.com/likedan/KDIntroView) - swift 动态介绍视图框架及演示。另外两个相似的类库是 RazzleDazzle和 Presentation,择需使用。
725 | * [RazzleDazzle](https://github.com/IFTTT/RazzleDazzle) - 【IFTTT开源Swift编写的帧动画框架--RazzleDazzle】RazzleDazzle 是IFTTT开源的一个iOS帧动画框架,非常适用于APP初次使用时的介绍和引导信息。JazzHands是UIKit一个简单的关键帧基础动画框架,可通过手势、scrollview、KVO等控制动画,被IFTTT应用在IFTTT for iPhone上。
726 | * [SIFloatingCollection_Swift](https://github.com/ProudOfZiggy/SIFloatingCollection_Swift) - 可定制的 Apple Music 风格浮动形状动画组件及演示。
727 | * [CKWaveCollectionViewTransition](https://github.com/CezaryKopacz/CKWaveCollectionViewTransition) - swift, UICollectionViewController之间切换的动画。
728 | * [CardsAnimationDemo](https://github.com/adow/CardsAnimationDemo) - swift, [《使用 UICollectionView 实现的一个卡片动画》](http://swiftcn.io/topics/64?f=w)不是直接操作所有 UIView 和 CALayer 的 transform3D 属性来实现整个效果的,而是使用 UICollectionView 来完成所有的视图管理和实现。
729 | * [TKRubberIndicator.swift](https://github.com/TBXark/TKRubberIndicator) - 一个很不错的 page control。
730 | * [TTGEmojiRate.swift](https://github.com/zekunyan/TTGEmojiRate) - TTGEmojiRate.swift以Emoji表情为基础绘图,[Swift开源项目: TTGEmojiRate的实现](http://tutuge.me/2015/10/25/ttgemojirate-lib/)。
731 | * [CardAnimation.swift](https://github.com/seedante/CardAnimation) - CardAnimation 是国人开发的一个用 Swift 实现卡片垂直翻转动画的 Demo, [实现思路](http://www.jianshu.com/p/286222d4edf8)。
732 | * [UIViewXXYBoom.swift](https://github.com/xxycode/UIViewXXYBoom) - 一个炫酷好玩的爆炸效果,[如何实现这个效果](http://xxycode.com/ru-he-zhi-zuo-ge-xuan-ku-hao-wan-de-bao-zha-xiao-guo-2/)。
733 | * [ZLSwipeableViewSwift](https://github.com/zhxnlai/ZLSwipeableViewSwift) - [ZLSwipeableView](https://github.com/zhxnlai/ZLSwipeableView) - ZLSwipeableViewSwift在Tinder and Potluck中的动画效果实现思路(连续卡片翻页效果),最贴心的是作者提供了OC和Swift两个版本来供开发者使用,非常丝滑顺畅的效果。
734 | * [RYCuteView](https://github.com/Resory/RYCuteView) - 用UIBezierPath实现果冻效果。 [教程](http://www.jianshu.com/p/21db20189c40)
735 | * [IBAnimatable.swift](https://github.com/JakeLin/IBAnimatable) - 第三方开源库IBAnimatable可以帮助我们在Interface Builder和Swift Playground里面设计UI, 交互, 导航模式, 换场和动画。整个App 都是通过 IBAnimatable 在Interface Builder 设计完成,没有任何一行代码。
736 | * [MotionMachine.swift](https://github.com/poetmountain/MotionMachine) - 功能强大、优雅、模块化动画库。
737 | * [circle-menu.swift](https://github.com/Ramotion/circle-menu) - 动画效率很赞的圆形缩放菜单演示及类库。
738 | * [BWWalkthrough.swift](https://github.com/ariok/BWWalkthrough) - BWWalkthrough.swift界面切换中加入灵动的动画效果。
739 | * [hamburger-button.swift](https://github.com/robb/hamburger-button) - hamburger-button.swift一个汉堡包动画关闭按钮。
740 | * [HamburgerButton.swift](https://github.com/fastred/HamburgerButton) - HamburgerButton.swift一个汉堡包动画返回按钮。
741 | * [MDCSwipeToChooseView](https://github.com/modocache/MDCSwipeToChoose) - MDCSwipeToChooseView翻牌子效果。
742 | * [Advance.swift](https://github.com/storehouse/Advance) - 简单易用、功能强大的动画框架库。在手势交互、帧动画、自定义动画及仿真类型将是不错的选择。
743 | * [HWAnimationTransition_Swift](https://github.com/Loveway/HWAnimationTransition_Swift) 、[HWAnimationTransition_OC](https://github.com/Loveway/HWAnimationTransition_OC) - 类似于格瓦拉启动页中的放大转场动画(objective-C && Swift)。[教程](http://www.jianshu.com/p/8c29fce5a994)
744 | * [NumberMorphView.swift](https://github.com/me-abhinav/NumberMorphView) - 可爱的数字补间(变身)动画类库。
745 | * [DisplaySwitcher.swift](https://github.com/Yalantis/DisplaySwitcher) - 两个集合视图在不同布局(平铺和列表)间平滑切换。Yalantis 出品。
746 | * [DynamicButton.swift](https://github.com/yannickl/DynamicButton) - 一套完整、且带动画过渡的图标按钮库。
747 | * [TKDotSegment.swift](https://github.com/TBXark/TKDotSegment) - 是一个带有圆点动画的 segment。
748 | * [LiquidLoader.swift](https://github.com/yoavlt/LiquidLoader) - 液态加载动画的轻量级 UI 组件。
749 | * [15DaysofAnimationsinSwift](https://github.com/larrynatalicio/15DaysofAnimationsinSwift) - 15DaysofAnimationsinSwift动画。
750 | * [Interpolate.swift](https://github.com/marmelroy/Interpolate) - 手势驱动交互式转场动画框架库。这个很专业,且非常有意思。
751 | * [PeekPop.swift](https://github.com/marmelroy/PeekPop) - 3DTouch动画组件。
752 | * [fantastic-ios-animation.swift](https://github.com/onmyway133/fantastic-ios-animation) - 基于 UI 组件类别分类,且带精彩动画效果的 iOS 组件库集合。
753 | * [GridPanelDemo](https://github.com/JasonZengJ/GridPanelDemo) 赞,一个点击翻转的动画Demo
754 | * [astrology-motion-ios](https://github.com/handsomecode/astrology-motion-ios) Astrology animation written in Swift 3
755 |
756 | #### 编码规范@
757 |
758 | * [SwiftLint](https://github.com/realm/SwiftLint) - 是一个用于强制检查Swift 代码风格和规定的一个工具,基本上以GitHub's Swift 代码风格指南为基础.
759 |
760 | #### 机器学习@
761 |
762 | * [SeeFood](https://github.com/kingreza/SeeFood) - Inspired by HBO's Silicon Valley: SeeFood is an iOS app that uses CoreML to detect various dishes
763 |
764 | #### AI@
765 |
766 | * [SwiftAI](https://github.com/hhfa008/SwiftAI) - SwiftAI, write Swift code smart. SwiftAI can generate Model class from JSON now. Codable and HandyJSON is supported. More features will be add.
767 |
768 | #### 数学@
769 |
770 | * [Surge.swift](https://github.com/mattt/Surge) - Surge.swift基于苹果Accelerate高性能计算数学框架封装库.
771 |
772 | #### UI@
773 |
774 | * [Material](https://github.com/CosmicMind/Material) - A UI/UX framework for creating beautiful applications.
775 | * [IBLinter](https://github.com/kateinoigakukun/IBLinter) - A linter tool for Interface Builder.
776 |
777 | #### 列表@
778 | #### TableView、CollectionView、表相关、即时聊天UI等
779 |
780 | * [folding-cell](https://github.com/Ramotion/folding-cell) - FoldingCell is an expanding content cell with animation inspired by folding paper material design UI.
781 | * [SwipeCellKit](https://github.com/jerkoch/SwipeCellKit) - 很赞的tableView左滑删除效果.
782 | * [Eureka.swift](https://github.com/xmartlabs/Eureka) - Eureka 是 XLForm 的 Swift 的移植版本, 一个可以帮助开发者们快速构建 iOS 各种复杂表单的库, 具有较高的可扩展性, 方便自定制样式.
783 | * [HBHorizontalTableView](https://github.com/izyhuang/HBHorizontalTableView) - TableView 横向滚动小示例(仿照 AppStore 应用展示).
784 | * [Chats](https://github.com/acani/Chats) - 聊天 UI 示例程序。此项目应该只为演示或学习之用,没有服务器.
785 | * [Chatto](https://github.com/badoo/Chatto) - 轻量级聊天应用框架及示例。文字及图片可扩展输入栏,汽泡效果等聊天核心特性,分页及自动布局完善.
786 | * [COBezierTableView](https://github.com/knutigro/COBezierTableView) - swift,通过编辑 Bezier 曲线四点位置设置 TableView 内 Cell 及对应按扭位置。实验效果很赞。
787 | * [LxTabBarController](https://github.com/DeveloperLx/LxTabBarController) - 改变了原生tabbar切换tab时的生硬效果,并加入滑动切换手势(有和界面上的其它手势发生冲突的风险,可根据具体项目予以关闭),[swift版本](https://github.com/DeveloperLx/LxTabBarController-swift).
788 | * [ABExpandableView](https://github.com/alicanbatur/ABExpandableView) - Expandable, collapsible, filterable and single/multi selectable table view.
789 | * [Cards](https://github.com/PaoloCuscela/Cards) - Awesome iOS 11 appstore cards in swift 4.
790 | * [Sapporo](https://github.com/nghialv/Sapporo) - swift 单元格模型驱动的集合视图管理器组件。又一个超实用的“轮子”.
791 | * [NavTopImage](https://github.com/itjhDev/NavTopImage) - NavigationController动态缩放titleView.
792 | * [paper-onboarding.swift](https://github.com/Ramotion/paper-onboarding) - 漂亮的 material design 风格页面滑块。示例完整,易用.
793 | * [ReorderableGridView-Swift](https://github.com/cemolcay/ReorderableGridView-Swift) - 拖拽排序卡片.
794 | * [ZYThumbnailTableView](https://github.com/liuzhiyi1992/ZYThumbnailTableView) - 可展开型预览TableView,开放接口,完全自由定制。[实现教程](http://zyden.vicp.cc/zythumbnailtableview/)
795 | * [WHC_CollectionViewFramework](https://github.com/netyouli/WHC_CollectionViewFramework) - 高仿支付宝可拖拽排序编辑动画效果cell的CollectionView集合视图.
796 | * [SwipeViewController](https://github.com/fortmarek/SwipeViewController) - 一款好用的页面滑动和标签选项卡类库及示例。功能相当于 Objective-C 版 RKSwipeBetweenViewControllers.
797 | * [TabDrawer](https://github.com/winslowdibona/TabDrawer) - 更适合单手操作的可定制 Tab Bar 组件库。P.S. 自动布局选择了 EasyPeasy.
798 | * [SFFocusViewLayout](https://github.com/fdzsergio/SFFocusViewLayout) - UICollectionViewLayout实现的图片浏览器.
799 | * [ESTabBarController](https://github.com/eggswift/ESTabBarController) - 自定义TabBarController组件,继承自UITabBarControlle,可添加动画和自定义样式。[swift 高度自定义TabBarController,支持自定义TabBarItem样式或添加动画](http://www.jianshu.com/p/9e52630e7368).
800 | * [GLTableCollectionView](https://github.com/giulio92/GLTableCollectionView) - Netflix and App Store like UITableView with UICollectionView, written in pure Swift 3.0.
801 | * [EditDistance](https://github.com/kazuhiro4949/EditDistance) - tableView、CollectionView 数据重载更新效果Demo.
802 | * [CenteredCollectionView](https://github.com/BenEmdon/CenteredCollectionView) - 轻量级的CollectionViewCell左右滑动效果,类似电影App选电影的效果.
803 | * [WCLWaterFallLayout](https://github.com/631106979/WCLWaterFallLayout) - 用swift写的简易的瀑布流布局,简单易用,支持多行展示,实现过程:http://blog.csdn.net/wang631106979/article/details/53793046 .
804 | * [LNZTreeView](https://github.com/gringoireDM/LNZTreeView) - 一个树状的列表View.
805 | * [FunctionalTableData](https://github.com/Shopify/FunctionalTableData) - Declarative UITableViewDataSource implementation.
806 | * [DeepDiff](https://github.com/onmyway133/DeepDiff) - 支持列表和宫格列表快速变换的列表库.
807 | * [TiltedTabView](https://github.com/IMcD23/TiltedTabView) - iOS control to replicate the tab switcher in Safari for iOS.
808 | * [TabView](https://github.com/IMcD23/TabView) - Easily add multiple tabs to your iOS app, styled similar to Safari for iPad.
809 | * [Parade](https://github.com/HelloElephant/Parade) - Parallax Scroll-Jacking Effects Engine for iOS / tvOS.
810 |
811 | #### scrollView@
812 |
813 | * [ScrollableGraphView](https://github.com/philackm/ScrollableGraphView) - 自适应滚动视图的图表控件.
814 |
815 | #### 图表@
816 |
817 | * [Charts](https://github.com/danielgindi/Charts) - 一款非常👍👍👍 优秀的图表开源库 MPAndroidChart 的 Swift 语言实现版(支持 Objective-C 和 Swift 调用).
818 | * [swift-linechart](https://github.com/zemirco/swift-linechart) - 功能完整、实用的折线图组件。使用方便,参数配置简单。是不可多得的优质组件--swift.
819 | * [SpreadsheetView](https://github.com/kishikawakatsumi/SpreadsheetView) - 很棒👍 的电子表格库. 可以完全配置的电子表格View,使用此库你能很容易的创建出复杂布局的表格,比如时间表、甘特图、课程表,就像你使用Excel一样.
820 | * [Scrollable-GraphView.swift](https://github.com/philackm/Scrollable-GraphView) - 灵动感十足的自适应、可定制滚动曲(折)线图表库.
821 | * [SwiftChart](https://github.com/gpbl/SwiftChart) - Line and area chart library for iOS.
822 |
823 | #### 日历@
824 |
825 | * [JTAppleCale
826 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # iOSResources
2 |
3 |
4 | [](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Introduction/Introduction.html)
5 |
6 | [Swift版本点击这里](https://github.com/honkerSK/iOSResources/blob/master/Swift.md)
7 |
8 | ### About
9 |
10 | A curated list of iOS objective-C ecosystem.
11 |
12 | ### How to Use
13 |
14 |
15 | - Simply press command + F + "xxx@" to search for a keyword
16 | - Go through our *Content Menu*
17 |
18 | ### Feedback
19 |
20 | 期待大家和我们一起共同维护,同时也期望大家随时能提出宝贵的意见(直接提交issues即可)。请广大网友只按照目录结构(即使目录结构有问题)添加三方库,并提交pull request。目录问题大家提出issues后楼主会及时更改的。
21 |
22 | ### 目录
23 | - [完整App@](#完整App)
24 | - [免费API集合@](#免费API集合)
25 | - [框架@](#框架)
26 | - [react@](#react)
27 | - [framework@](#framework)
28 | - [混合开发@](#混合开发)
29 | - [安全@](#安全)
30 | - [区块链@](#区块链)
31 | - [逆向@](#逆向)
32 | - [网络@](#网络)
33 | - [网络请求@](#网络请求)
34 | - [socket@](#socket)
35 | - [网络下载@](#网络下载@)
36 | - [图像获取@](#图像获取)
37 | - [IM@](#IM)
38 | - [网络测试@](#网络测试)
39 | - [网页框架@](#网页框架)
40 | - [网络解析@](#网络解析)
41 | - [CSV](#csv)
42 | - [JSON@](#json)
43 | - [XML&HTML@](#xml&html)
44 | - [block@](#block)
45 | - [数据存储@](#数据存储)
46 | - [缓存处理@](#缓存处理)
47 | - [序列化@](#序列化)
48 | - [coreData@](#coreData)
49 | - [动画@](#动画)
50 | - [侧滑与右滑返回手势@](#侧滑与右滑返回手势)
51 | - [转场@](#转场)
52 | - [多媒体@](#多媒体)
53 | - [GIF@](#GIF)
54 | - [VR@](#VR)
55 | - [AR@](#AR)
56 | - [二维码@](#二维码)
57 | - [PDF@](#PDF)
58 | - [流媒体@](#流媒体)
59 | - [音频@](#音频)
60 | - [视频@](#视频)
61 | - [视频播放@](#视频播放)
62 | - [视频处理@](#视频处理)
63 | - [视频录制@](#视频录制)
64 | - [视频剪切@](#视频剪切)
65 | - [弹幕@](#弹幕)
66 | - [直播@](#直播)
67 | - [图像@](#图像)
68 | - [拍照@](#拍照)
69 | - [图像处理@](#图像处理)
70 | - [图像浏览@](#图像浏览)
71 | - [图像缓存@](#图像缓存)
72 | - [滤镜@](#滤镜)
73 | - [图像识别@](#图像识别)
74 | - [图像圆角@](#图像圆角)
75 | - [截屏@](#截屏)
76 | - [AutoLayout@](#AutoLayout)
77 | - [数据结构/算法@](#数据结构/算法)
78 | - [机器学习@](#机器学习)
79 | - [上架@](#上架)
80 | - [iOS11@](#iOS)
81 | - [应用内支付@](#应用内支付)
82 | - [Xcode8插件@](#Xcode8插件)
83 | - [动态更新@](#动态更新)
84 | - [App更新提示@](#App更新提示)
85 | - [UI@](#UI)
86 | - [综合UI@](#综合UI)
87 | - [列表@](#列表)
88 | - [TableView@](#TableView)
89 | - [TableView适配@](#TableView适配)
90 | - [CollectionView@](#CollectionView)
91 | - [图表@](#图表)
92 | - [下拉刷新@](#下拉刷新)
93 | - [模糊效果@](#模糊效果)
94 | - [日历三方库@](#日历三方库)
95 | - [颜色@](#颜色)
96 | - [scrollView@](#scrollView)
97 | - [对话交互@](#对话交互)
98 | - [隐藏与显示@](#隐藏与显示)
99 | - [HUD与Toast@](#HUD与Toast)
100 | - [对话框@](#对话框)
101 | - [Pop@](#Pop)
102 | - [通知相关@](#通知相关)
103 | - [状态栏@](#状态栏)
104 | - [导航栏@](#导航栏)
105 | - [设置@](#设置)
106 | - [引导页@](#引导页@)
107 | - [Switch@](#Switch)
108 | - [Label@](#Label)
109 | - [Search@](#Search)
110 | - [主题@](#主题)
111 | - [电影选座@](#电影选座)
112 | - [瀑布流@](#瀑布流)
113 | - [菜单@](#菜单)
114 | - [Tabbar@](#Tabbar)
115 | - [进度@](#进度)
116 | - [小红点@](#小红点)
117 | - [page@](#page)
118 | - [轮播@](#轮播)
119 | - [选择器@](#选择器)
120 | - [购物车@](#购物车)
121 | - [引导@](#引导)
122 | - [按钮@](#按钮)
123 | - [类3D@](#类3D)
124 | - [其他UI@](#其他UI)
125 | - [工具@](工具@)
126 | - [提醒用户评分@](@提醒用户评分)
127 | - [压缩解压@](@压缩解压)
128 | - [Category@](#Category)
129 | - [代码片@](#代码片)
130 | - [Github相关@](#Github相关)
131 | - [键盘@](#键盘)
132 | - [分发@](分发@)
133 | - [文本@](#文本)
134 | - [文本输入@](#文本输入)
135 | - [富文本@](#富文本)
136 | - [表情@](#表情)
137 | - [字体@](#字体)
138 | - [多线程@](#多线程)
139 | - [ipad@](#ipad)
140 | - [通讯@](#通讯)
141 | - [学习资料@](#学习资料)
142 | - [播客@](#播客)
143 | - [其他开源@](#其他开源)
144 | - [博客@](#博客)
145 | - [学习笔记@](#学习笔记)
146 | - [书籍@](#书籍)
147 | - [设计@](#设计)
148 | - [美工资源@](#美工资源)
149 | - [文章@](#文章)
150 | - [优化@](#优化@)
151 | - [测试调试@](#测试调试)
152 | - [Xcode工具@](#Xcode工具)
153 | - [Runtime@](#Runtime)
154 | - [Xcode插件@](#Xcode插件)
155 | - [接口调试工具@](#接口调试工具)
156 | - [UI调试@](#UI调试)
157 | - [版本适配@](#版本适配)
158 | - [深度链接@](#深度链接)
159 | - [WebView与WKWebView@](#WebView与WKWebView)
160 | - [游戏@](#cocos2d-objc)
161 | - [通讯录@](#通讯录)
162 | - [地图@](#地图)
163 | - [其他库@](#其他库)
164 | - [三方@](#三方)
165 | - [三方分享、支付、登录等等@](#三方分享、支付、登录等等)
166 | - [消息相关@](#消息相关)
167 | - [消息推送客户端@](#消息推送客户端)
168 | - [消息推送服务器端@](#消息推送服务器端)
169 | - [通知相关请搜索“对话交互@”@](#通知相关请搜索“对话交互@”@)
170 | - [时间日期@](#时间日期)
171 | - [设计模式@](#设计模式)
172 | - [版本管理@](#版本管理)
173 | - [Git用法@](#Git用法)
174 | - [GitHub@](#GitHub)
175 | - [GitBook@](#GitBook)
176 | - [Git文章@](#Git文章)
177 | - [GithubRank@](#GithubRank)
178 | - [桌面工具@](#桌面工具)
179 | - [Github客户端@](#Github客户端)
180 | - [Github插件@](#Github插件)
181 | - [命令行@](#命令行)
182 | - [Git平台与工具@](#Git平台与工具)
183 | - [Github项目@](#Github项目)
184 | - [Git库@](#Git库)
185 | - [Github浏览器工具@](#Github浏览器工具)
186 | - [皮肤@语言国际化@](#皮肤#语言国际化)
187 | - [版本新API的Demo@](#版本新API的Demo)
188 | - [AppleWatch@](#AppleWatch)
189 | - [VPN@](#VPN)
190 | - [mac@](#mac)
191 | - [开发环境@](#开发环境)
192 | - [深度学习@](#深度学习)
193 | - [前端@](#前端)
194 | - [后台@](#后台)
195 | - [AppHTTPServer@](#AppHTTPServer)
196 |
197 | #### 具体内容 =============================
198 |
199 | #### 完整App@
200 |
201 | * [GitHubRank](http://githubrank.com/) - GitHub活跃用户排名(便于学习,请勿攀比).
202 | * [expo](https://github.com/expo/expo) - Expo iOS/Android Client https://docs.expo.io/.
203 | * [PPRows for Mac](https://github.com/jkpang/PPRows) - 在Mac上优雅的计算你写了多少行代码.
204 | * [NewsBlur](https://github.com/samuelclay/NewsBlur) - 作者独自一个人 Samuel Clay 做出来的一款名为 NewsBlur 的新闻阅读器, 很多人都称其为 Google Reader 的替代品, 这是它的源码.
205 | * [HackerNews-React-Native](https://github.com/iSimar/HackerNews-React-Native) - 用React Native 完成的 HackerNews 客户端.
206 | * [WeChat](https://github.com/zhengwenming/WeChat)- 实现类似微信朋友圈或者QQ空间,评论回复,九宫格布局。处理键盘弹出后定位到当前点击的被评论人处。另:滑动时候FPS在57-60之间,纵享丝滑.
207 | * [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.
208 | * [iOSAppTemplate](https://github.com/tbl00c/iOSAppTemplate) - 高仿微信,iOS应用开发模板,个人总结.
209 | * [Bilibili_Wuxianda](https://github.com/MichaelHuyp/Bilibili_Wuxianda) - 赞 高仿Bilibili客户端.
210 | * [Coding-iOS](https://github.com/Coding/Coding-iOS) - Coding iOS 客户端源代码.
211 | * [Coding-iPad](https://github.com/Coding/Coding-iPad) - Coding iPad 客户端源代码.
212 | * [Monkey](https://github.com/coderyi/Monkey) - GitHub第三方iOS客户端.
213 | * [firefox-ios](https://github.com/mozilla/firefox-ios) Firefox for iOS.
214 | * [RSSRead](https://github.com/ming1016/RSSRead) - “已阅”(iOS上开源RSS新闻阅读器).
215 | * [zulip-ios](https://github.com/zulip/zulip-ios) - Dropbox收购公司内部社交服务商Zulip,然后全部开源,这是iOS App.
216 | * [ChatSecure-iOS](https://github.com/ChatSecure/ChatSecure-iOS) - Objective-C写的XMPP聊天应用.
217 | * [FirebaseChat](https://github.com/relatedcode/FirebaseChat) - Objective-C写的完整的聊天应用.
218 | * [Meizi](https://github.com/Sunnyyoung/Meizi) - 豆瓣妹子图iOS客户端.
219 | * [PlainReader](https://github.com/guojiubo/PlainReader) - 简阅是一款 iOS(iPhone + iPad) 新闻类客户端,内容抓取自 cnBeta.COM。在售期间倍受好评,但由于版权问题已于今年一月从 AppStore 下架,下架至今,每天仍有几千人在使用这款 App.
220 | * [ECMobile_iOS](https://github.com/GeekZooStudio/ECMobile_iOS) - 基于ECShop的手机商城客户端.
221 | * [wikipedia-ios](https://github.com/wikimedia/wikipedia-ios) - 维基百科官方App, 已上架.
222 | * [Sol](https://github.com/comyarzaheri/Sol) - 漂亮的扁平风格的天气App.
223 | * [v2ex](https://github.com/singro/v2ex) - v2ex第三方iOS客户端。V2EX是一个知名技术创意网站,由设计师、程序员及有创意的人参与的社区.
224 | * [WNXHuntForCity](https://github.com/ZhongTaoTian/WNXHuntForCity) - 城觅By-Objective-C.
225 | * [breadwallet](https://github.com/voisine/breadwallet) - breadwallet - bitcoin wallet.
226 | * [GreatReader](https://github.com/semweb/GreatReader) - GreatReader PDF阅读客户端.
227 | * [Tropos](https://github.com/thoughtbot/Tropos) - 天气客户端.
228 | * [WordPress-iOS](https://github.com/wordpress-mobile/WordPress-iOS) - WordPress iOS官方客户端. 笔者强烈推荐的开源项目.
229 | * [TeamTalk](https://github.com/mogujie/TeamTalk) - 蘑菇街TeamTalk. 开源IM. 笔者强烈推荐.
230 | * [MessageDisplayKit](https://github.com/xhzengAIB/MessageDisplayKit) - 一个类似微信App的IM应用,拥有发送文字、图片、语音、视频、地理位置消息,管理本地通信录、分享朋友 圈、漂流交友、摇一摇和更多有趣的功能。
231 | * [iOS-Oncenote](https://github.com/chenyufeng1991/iOS-Oncenote) - 这是一款类似于印象笔记Evernote的生活类iOS应用——朝夕笔记 Oncenote。我希望能为更多的iOS开发者提供帮助与服务.
232 | * [GSD_WeiXin](https://github.com/gsdios/GSD_WeiXin) 高仿微信.
233 | * [v2ex](https://github.com/singro/v2ex) - v2ex 的客户端,新闻、论坛.
234 | * [wikipedia-ios](https://github.com/wikimedia/wikipedia-ios) - wikipedia-ios 客户端.
235 | * [DeckRocket](https://github.com/jpsim/DeckRocket) - 在相同 WiFi 网络环境内,通过iPhone 控制并播放 Mac 中的 PDF 文档.
236 | * [DSLolita](https://github.com/sam408130/DSLolita) - 模仿新浪微博做的一款app,有发送博文,评论,点赞,私聊功能.
237 | * [STPhotoBrowser](https://github.com/STShenZhaoliang/STPhotoBrowser) - 高仿新浪微博的图片浏览器,极佳的编写方式,易扩展,低耦合.
238 | * [Tropos](https://github.com/thoughtbot/Tropos) - Tropos, 由 thoughtbot 推出的一款用 Objective-C 写的开源天气类应用.
239 | * [SmileWeather](https://github.com/liu044100/SmileWeather) - 开源天气类应用,天气图标很完整.
240 | * [MVVMReactiveCocoa](https://github.com/leichunfeng/MVVMReactiveCocoa) - 基于MVVM的GitBucket客户端2.0.[AppStore地址](https://itunes.apple.com/cn/app/id961330940?mt=8),欢迎下载使用GitBucket和收藏MVVMReactiveCocoa.
241 | * [Tomate](https://github.com/dasdom/Tomate) - 这个圆盘式计时器让你更专注于工作或学习。P.S. App Store 上架收费应用(0.99 欧).
242 | * [WNXHuntForCity](https://github.com/ZhongTaoTian/WNXHuntForCity) - iOS高仿城觅项目(开发思路和代码).
243 | * [ZYChat](https://github.com/zyprosoft/ZYChat) - 关于聊天界面的可消息类型扩展,响应绑定设计.
244 | * [meituan](https://github.com/lookingstars/meituan) - 美团5.7iOS版(高仿),功能包括,团购首页,高德地图搜索附近美食并显示在地图上,上门服务,商家,友盟分享.
245 | * [JFMeiTuan](https://github.com/tubie/JFMeiTuan) - 造美团应用界面构建的 iOS 应用, 第二个是 @tubiebutu 的 JFMeiTuan.
246 | * [SXNews](https://github.com/dsxNiubility/SXNews) - 模仿网易新闻做的新闻软件,完成了主导航页,新闻详情页,图片浏览页,评论页.
247 | * [Monkey](https://github.com/coderyi/Monkey) - GitHub开发者和仓库排名的开源App.
248 | * [Uther](https://github.com/callmewhy/Uther) - 跟蠢萌的外星人聊天,还能帮你记事”.[itunes下载](https://itunes.apple.com/cn/app/uther/id1024104920).
249 | * [高仿斗鱼TV](http://code.cocoachina.com/view/128246) - 高仿斗鱼TV,点击头部滚动视图可以播放视频.
250 | * [Coding-iPad](https://github.com/Coding/Coding-iPad) - @Coding的官方 iPad 客户端.
251 | * [wire-ios](https://github.com/wireapp/wire-ios) - 私密消息应用wire源码.
252 | * [react-native-gitfeed](https://github.com/xiekw2010/react-native-gitfeed) - 目前最实用简洁的github客户端了.
253 | * [phphub-ios](https://github.com/Aufree/phphub-ios) - PHPHub的iOS客户端,同时兼容iPhone和iPad.
254 | * [LeagueofLegends](https://github.com/HarrisHan/LeagueofLegends) - 一个关于英雄联盟的完整iOS开源项目,接口均来自多玩,腾讯各大游戏平台.
255 | * [BTApp](https://github.com/Ryan0520/BTApp) - BTApp 仿半糖 iOS App 的 Demo 应用.
256 | * [iOS完整App资源收集](https://github.com/CoderJackyHuang/MDArtileFiles) - 很多开源的完整的App--标哥的技术博客.
257 | * [XCFApp-1](https://github.com/callmejoejoe/XCFApp) - 高仿下厨房App,Objective-C,Xcode7.2,数据通过Charles抓的,有接口也有本地数据。说明:关于代码被清空,会用git的你肯定明白,[教程](http://www.jianshu.com/p/a8f619a2c622/).
258 | * [YoCelsius](https://github.com/YouXianMing/YoCelsius) - 已经上线的一款天气预报的应用,几乎所有的交互动画效果,想学习动画的开发人员可以作为参考.
259 | * [DayDayNews](https://github.com/gaoyuhang/DayDayNews) - 仿网易新闻客户端,实现新闻浏览,视频播放,仿搜狐视频、百思不得姐等当前主流视频播放器,实现流媒体播放,自动监听屏幕转动,实现横屏播放 , 抓取百度图片,瀑布流显示,夜间模式,环信即时通讯.
260 | * [ECMobile_iOS](https://github.com/GeekZooStudio/ECMobile_iOS) - 基于ECShop的手机商城客户端(iOS、Android、Php一体).
261 | * [TKeyboard](https://github.com/music4kid/TKeyboard) - 这款应用名为:TKeyboard。有一个 Mac 端和一个 iOS 端 App。简单来说,可以通过蓝牙,使用 Mac 的键盘输入内容到 iPhone 设备中.
262 | * [BDJProjectExample](https://github.com/yizzuide/BDJProjectExample) - 基于VIPER设计模式,以XFLegoVIPER框架为引擎的仿《百思不得姐》项目.
263 | * [UberSignature](https://github.com/uber/UberSignature) - 一个通过触摸前面的App.
264 | * [HiPDA](https://github.com/leizh007/HiPDA) - HiPDA的非官方客户端(iOS版).
265 | * [yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo) - a demo developed using weex/weex高仿网易严选App.
266 | * [MeiTuan](https://github.com/huanxsd/MeiTuan) - 高仿美团客户端 React-Native版,支持iOS、Android.
267 | * [OneM](https://github.com/guangqiang-liu/OneM) - OneM是一款纯ReactNative打造的集杂志浏览、音乐播放、视频播放于一体的综合性App,并且支持iOS和Android双平台.
268 | * [ZMBCY-iOS](https://github.com/Brances/ZMBCY-iOS) - 高仿二次元网易GACHA,所有接口均通过Charles抓取而来,里面有可单独抽离出来的卡片轮播.
269 | * [Hotels](https://github.com/FantasticLBP/Hotels) - 酒店预订App.
270 | * [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - A Mac app wrapper for music.youtube.com.
271 | * [MONO](https://github.com/xumaohuai/MONO) - 高仿MONO(猫弄).
272 | * [LZAlbum](https://github.com/lzwjava/LZAlbum) - 基于 LeanCloud 的朋友圈,优雅地使用 LeanCloud.
273 | * [xkcd-Open-Source](https://github.com/mamaral/xkcd-Open-Source) - A free and open source xkcd comic reader for iOS.s
274 |
275 | #### 免费API集合@
276 |
277 | - [聚合数据](https://www.juhe.cn/)
278 | - [百度 LBS 开放平台(含查询天气)](http://developer.baidu.com/map/carapi-7.htm)
279 | - [百度 API 集市](http://apistore.baidu.com/astore/classificationservicelist.html)
280 | - [webxml](http://www.webxml.com.cn/zh_cn/index.aspx)
281 | - [阿里云地图 API](http://gc.ditu.aliyun.com/jsdoc/)
282 | - [太平洋网络 IP 地址查询 Web 接口](http://whois.pconline.com.cn/)
283 | - [淘宝 IP 查询接口](http://ip.taobao.com/service/getIpInfo.php?ip=117.89.35.58)
284 | - [新浪 IP 查询接口](http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=117.89.35.58)
285 | - [腾讯开放平台](http://wiki.open.qq.com/wiki/API%E6%96%87%E6%A1%A3)
286 | - [快递 100](https://www.kuaidi100.com/openapi/)
287 | - [住哪网开放平台](http://open.zhuna.cn/)
288 | - [有道翻译 API](http://fanyi.youdao.com/openapi)
289 | - [爱词霸翻译](http://dict-co.iciba.com/search.php?word=hello)
290 | - [soso 接口](http://cgi.music.soso.com/fcgi-bin/fcg_search_xmldata.q?source=10&w=%E5%90%8E%E6%9D%A5&perpage=1&ie=utf-8)
291 | - [多米音乐](http://v5.pc.duomi.com/search-ajaxsearch-searchall?kw=%E9%98%B3%E5%85%89%E6%80%BB%E5%9C%A8%E9%A3%8E%E9%9B%A8%E5%90%8E)
292 | - [百付宝接口](https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=13950442340)
293 | - [淘宝网接口](https://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=13950442340)
294 | - [获取京东商品价格](http://p.3.cn/prices/mgets?skuIds=J_2938299&type=1)
295 | - [豆瓣 API](https://developers.douban.com/wiki/?title=guide)
296 | - [淘宝开放平台](http://open.taobao.com/)
297 | - [微信开放平台](https://open.weixin.qq.com/)
298 | - [融云即时通讯云](http://www.rongcloud.cn/)
299 | - [MOB API - 移动开发者服务平台](http://www.mob.com/#/)
300 | - [腾讯 Bugly - 为移动开发者提供专业的异常上报,运营统计和内测分发解决方案](https://bugly.qq.com/v2/)
301 | - [Bmob - 免去所有服务器端编码工作量](http://www.bmob.cn/)
302 | - [Arrownock 社交应用](http://docs.arrownock.com/)
303 | - [leancloud](https://leancloud.cn/docs/index.html)
304 |
305 | #### 框架@
306 |
307 | * [nimbus](https://github.com/jverkoey/nimbus) - Nimbus是一个开源的iOS框架,比起Three20,Nimbus的文档更为全面、丰富,能够实现很多非常炫的界面特效.
308 | * [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)。
309 | * [react-native-maps](https://github.com/airbnb/react-native-maps) - React Native Mapview component for iOS + Android.
310 | * [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.
311 | * [react-native-maps](https://github.com/react-community/react-native-maps) - React Native Mapview component for iOS + Android.
312 | * [react-native-code-push](https://github.com/Microsoft/react-native-code-push) - React Native module for CodePush(微软提供的一套可用于React Native和Cordova的热更新服务).
313 | * [CYLTabBarController](https://github.com/ChenYilong/CYLTabBarController) - 低耦合集成TabBarController,最低只需传两个数组即可完成主流App框架搭建.
314 | * [samurai-native](https://github.com/hackers-painters/samurai-native) - 是一个基于浏览器内核通过HTML+CSS 开发原生移动应用的iOS框架.
315 | * [HHRouter](https://github.com/Huohua/HHRouter) - 一言以蔽之,URL Router 即将 UIViewController 映射成 URL,从而支持通过 URL 进行界面跳转。是的,就和 Web 一样。当然,这并不是 Web Developer 转职为 iOS Developer 后所做的无聊玩具。URL Router 有着许多切实的好处.
316 | * [AsyncDisplayKit](https://github.com/facebook/AsyncDisplayKit) - 异步界面渲染库,为极限优化View效果而生(同时提供 UIView bridge 接口).
317 | * [XFLegoVIPER](https://github.com/yizzuide/XFLegoVIPER) - A lightweight framework base on VIPER architecture for iOS, to build robust and maintained large scale project.
318 | * [publishImageAndVideoAnsRecord](https://github.com/DayCrazy/publishImageAndVideoAnsRecord) - 发布视频、语言、照片模块集合,其中包括带placeHolder的TextView、录制小视频、录制音频、选择照片或拍照.
319 | * [XBSettingController](https://github.com/changjianfeishui/XBSettingController) - 快速搭建类个人中心及应用设置界面.
320 | * [EVNEstorePlatform](https://github.com/zonghongyan/EVNEstorePlatform) - App项目框架 [简书解析](http://www.jianshu.com/p/89e25c288d76?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io)
321 | * [QMUI_iOS](https://github.com/QMUI/QMUI_iOS) - QMUI iOS——致力于提高项目 UI 开发效率的解决方案.
322 | * [UniversalProject](https://github.com/XuYang8026/UniversalProject) - 基于MVC架构的iOS轻量级框架,封装了基类、基于猿题库YTKNetwork的网络服务、工具库,NavigationController转场动画/瀑布流/粒子动画/小demo,已适配iOS11 & iPhone X.
323 | * [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.
324 | * [AppManager](https://github.com/nanchen2251/AppManager) - 🔥 An elegant exit application and restart mechanism management.
325 | * [MACProject](https://github.com/azheng51714/MACProject) - 这是一个用 Objective-C 写的 iOS 轻量级框架,旨在快速构建 iOS App.
326 | * [iOSProject](https://github.com/NJHu/iOSProject) - 一些oc项目集合.
327 | * [WYBasisKit](https://github.com/Jacke-xu/WYBasisKit) - "WYBasisKit" is a toolkit aimed at greatly improving efficiency.
328 |
329 | #### React@
330 |
331 | * [react-native](https://github.com/facebook/react-native) - A framework for building native apps with React.
332 | * [weex](https://github.com/alibaba/weex) - A framework for building Mobile cross-platform UI.
333 | * [LoginWithReactiveCocoa](https://github.com/CrazySurfBoy/LoginWithReactiveCocoa) - ReactiveCocoa - 登录交互效果的实现。
334 | * [BeeFramework](https://github.com/gavinkwoe/BeeFramework) - 与ReactiveCocoa类似,[BeeFramework用户指南 v1.0](http://www.lanrenios.com/tutorials/all/2012/1220/641.html)。
335 | * [Objective-Chain](https://github.com/Tricertops/Objective-Chain) - Objective-Chain是一个面向对象的响应式框架,作者表示该框架吸收了 ReactiveCocoa 的思想,并且想做得更面向对象一些。
336 | * [MVVMFramework](https://github.com/lovemo/MVVMFramework) - (OC版)总结整理下一个快速开发框架,分离控制器中创建tableView和collectionView的代码,已加入cell自适应高度,降低代码耦合,提高开发效率。
337 | * [react-native-config](https://github.com/luggit/react-native-config) - Bring some 12 factor love to your mobile apps.
338 | * [react-native-syan-image-picker](https://github.com/syanbo/react-native-syan-image-picker) - React-Native 多图片选择 支持裁剪 压缩.
339 | * [ReactNative的理解与思考,三端同一套代码的实践](http://www.jianshu.com/p/1144469bf81f?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io).
340 | * [RNStudyNotes](https://github.com/crazycodeboy/RNStudyNotes) - React Native 研究与实践.
341 | * [react-native-orientation](https://github.com/yamill/react-native-orientation) - Listen to device orientation changes in react-native and set preferred orientation on screen to screen basis.
342 | * [QTEventBus](https://github.com/LeoMobileDeveloper/QTEventBus) - 优雅的处理全局事件,支持AppDelegate解耦.
343 |
344 | #### framework@
345 |
346 | * [ReSwift](https://github.com/ReSwift/ReSwift) - ReSwift 是一个轻量级的框架,能够帮助你很轻松的去构建一个 Redux 架构的app.
347 | * [Small](https://github.com/wequick/Small) - A small framework to split app into small parts.
348 | * [Lotusoot](https://github.com/Vegetarians/Lotusoot) - 灵活的 Swift 组件通信和路由工具.
349 | * [Aspects](https://github.com/steipete/Aspects) - 个简洁高效的用于使iOS支持AOP面向切面编程的库.它可以帮助你在不改变一个类或类实例的代码的前提下,有效更改类的行为.
350 | * [Form](https://github.com/hyperoslo/Form) - JSON 驱动的 Form表单系统,复杂的表单填写类 App 极其需要(比如淘宝呢!).
351 |
352 | #### 混合开发@
353 |
354 | * [rexxar-ios](https://github.com/douban/rexxar-ios) - 豆瓣推的混合开发库 Mobile Hybrid Framework Rexxar iOS Container.
355 |
356 | #### 安全@
357 |
358 | * [Objective-C-RSA](https://github.com/ideawu/Objective-C-RSA) - Doing RSA encryption and decryption with Objective-C on iOS.
359 | * [NSDictionary-NilSafe](https://github.com/allenhsu/NSDictionary-NilSafe) - How we made NSDictionary nil safe at Glow.
360 | * [Myriam](https://github.com/GeoSn0w/Myriam) - A vulnerable iOS App with Security Challenges for the Security Researcher inside you.
361 | * [Hopper App](https://www.hopperapp.com/) - Hopper Disassembler是一款逆向工程工具,iOS爱好者可以使用它来进行反汇编,反编译和调试应用程序。此工具也可用于修改和重组代码。你只需在你的macOS或Linux系统上启动该应用,然后将其指向你需要破解的二进制文件即可。总的来说Hopper是一款非常好用的逆向工程工具,对于热衷于iOS漏洞赏金的人而言,无疑它将成为一个首选.
362 | * [ios-class-guard](https://github.com/Polidea/ios-class-guard) - 一个用于混淆iOS的类名、方法名以及变量名的开源库--有人反映编译出来的app运行不了.
363 | * [《Protecting iOS Applications》](https://www.polidea.com/#!heartbeat/blog/Protecting_iOS_Applications) - 文章系统地介绍了如何保护iOS程序的代码安全,防止反汇编分析.
364 | * [fishhook](https://github.com/facebook/fishhook) - fishhook是Facebook开源的一个可以hook系统方法的工具.
365 | * [MSCrashProtector](https://github.com/JZJJZJ/MSCrashProtector) - An Global protection scheme(代码容错处理).
366 | * [JMPasswordView](https://github.com/Juuman/JMPasswordView) - 简单实用的手势密码,效果可自行调控.
367 | * [LSSafeProtector](https://github.com/lsmakethebest/LSSafeProtector) - 防止crash框架,不改变原代码支持KVO自释放,可以检测到dealloc时未释放的kvo,等19种crash.
368 | * [WHC_ConfuseSoftware](https://github.com/netyouli/WHC_ConfuseSoftware) - iOS代码自动翻新(混淆)专家(WHC_ConfuseSoftware)是一款新一代运行在MAC OS平台的App、完美支持Objc和Swift项目代码的自动翻新(混淆)、支持文件名、类名、方法名、属性名、添加混淆方法体、添加混淆属性、自动调用混淆方法等。。。功能强大而稳定.
369 | * [仿密码锁-九宫格](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画图,解锁失败弹出“密码错误”.
370 | * [Valet](https://github.com/square/Valet) - 代客可以让你安全地存储在iOS和OS X的钥匙串数据,而无需了解的钥匙扣如何工作的事情.
371 | * [CoreLock](https://github.com/CharlinFeng/CoreLock) - 本框架是高仿支付宝,并集成了所有功能,并非一个简单的解锁界面展示。个人制作用时1周多,打造解锁终结者框架.
372 | * [LikeAlipayLockCodeView](https://github.com/crazypoo/LikeAlipayLockCodeView) - 高仿支付宝手势解锁(超级版).
373 | * [Smile-Lock.swfit](https://github.com/liu044100/Smile-Lock) - 一个类似于iOS的解锁界面.
374 | * [PCGestureUnlock](https://github.com/iosdeveloperpanc/PCGestureUnlock) - 目前最全面最高仿支付宝的手势解锁,而且提供方法进行参数修改,能解决项目开发中所有手势解锁的开发.
375 | * [ICPayPassWordDemo](https://github.com/icoder20150719/ICPayPassWordDemo) - CPayPassWordDemo,一个模仿支付宝支付密码输入对话框小demo.
376 | * [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.
377 | * [TouchID](https://github.com/bringbird/TouchID) - 用法简单的TouchID验证框架:两行代码搞定.
378 | * [SFHFKeychainUtils] (https://github.com/ldandersen/scifihifi-iphone) - iOS中使用SFHFKeychainUtils保存用户密码,比如项目中需要保存用户密码,以实现自动登录的功能可以使用.
379 | * [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).
380 | * [ABPadLockScreen](https://github.com/abury/ABPadLockScreen) - 九宫格密码锁.
381 |
382 | #### 区块链@
383 |
384 | * [awesome-blockchain](https://github.com/chaozh/awesome-blockchain) - 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料.
385 |
386 | #### 逆向@
387 |
388 | * [app2dylib](https://github.com/tobefuturer/app2dylib) - A reverse engineering tool to convert iOS app to dylib.
389 |
390 | #### 网络@
391 | #### 网络请求@
392 |
393 | * [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)。
394 | * [YTKNetwork](https://github.com/yuantiku/YTKNetwork) - 是基于 AFNetworking 封装的 iOS网络库,提供了更高层次的网络访问抽象。相比AFNetworking,YTKNetwork提供了以下更高级的功能:按时间或版本号缓存网络请求内容、检查返回 JSON 内容的合法性、文件的断点续传、批量的网络请求发送、filter和插件机制等,猿题库出品.
395 | * [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
396 | * [Moya](https://github.com/Moya/Moya) - Network abstraction layer written in Swift.
397 | * [HYBNetworking](https://github.com/CoderJackyHuang/HYBNetworking) - 基于AFN封装的网络库,可以通用。[基于AFNetworking封装网络库说明](http://www.henishuo.com/base-on-afnetworking-wrapper/)目前已经提供了通用的GET/POST、上传、下载API等。
398 | * [LxFTPRequest](https://github.com/DeveloperLx/LxFTPRequest) - 支持获取FTP服务器资源列表,下载/上传文件,创建/销毁ftp服务器文件/目录,以及下载断点续传,下载/上传进度,自动判断地址格式合法性跟踪等功能!国人开发,QQ:349124555。
399 | * [ASIHTTPRequest](https://github.com/pokeb/asi-http-request) - Easy to use CFNetwork wrapper for HTTP requests, Objective-C, macOS and iPhone.
400 | * [MutableUploadDemo](https://github.com/HHuiHao/MutableUploadDemo) - 模拟需求:图文混编,要求用户选择图片后就上传,可选择多图,并行上传,用户确定提交后后台执行,必须全部图片上传完才能提交文字。
401 | * [WTRequestCenter](https://github.com/swtlovewtt/WTRequestCenter) - 方便缓存的请求库,提供了方便的HTTP请求方法,传入请求url和参数,返回成功和失败的回调。 UIKit扩展提供了许多不错的方法,快速缓存图片,图片查看,缩放功能, 颜色创建,设备UUID,网页缓存,数据缓存等功能。 无需任何import和配置,目前实现了基础需求。
402 | * [MMWormhole](https://github.com/mutualmobile/MMWormhole) - Message passing between iOS apps and extensions 2个iOS设备之间通信。
403 | * [STNetTaskQueue](https://github.com/kevin0571/STNetTaskQueue) - STNetTaskQueue Objective-C 可扩展网络请求管理库。
404 | * [MZDownloadManager](https://github.com/mzeeshanid/MZDownloadManager) - 下载管理。
405 | * [DVR](https://github.com/venmo/DVR) - 针对网络请求的测试框架,超实用的工具。且支持 iOS, OSX, watchOS 全平台。
406 | * [HFDownLoad](https://github.com/hongfenglt/HFDownLoad) - iOS开发网络篇之文件下载、大文件下载、断点下载:NSData方式、NSURLConnection方式、NSURLSession下载方式 [下载方式具体的思路、区别见Blog](http://blog.csdn.net/hongfengkt/article/details/48290561) 。
407 | * [PPNetworkHelper](https://github.com/jkpang/PPNetworkHelper) - AFN3.x与YYCache的二次封装,一句话搞定网络请求与缓存,和FMDB说拜拜.
408 | * [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
409 | * [Overcoat](https://github.com/Overcoat/Overcoat) - Small but powerful library that makes creating REST clients simple and fun.
410 | * [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.
411 | * [TWRDownloadManager](https://github.com/chasseurmic/TWRDownloadManager) - A modern download manager based on NSURLSession to deal with asynchronous downloading, management and persistence of multiple files.
412 | * [HappyDns](https://github.com/qiniu/happy-dns-objc) - A Dns library, support custom dns server, dnspod httpdns. Only support A record.
413 | * [Bridge](https://github.com/BridgeNetworking/Bridge) - A simple extensible typed networking library. Intercept and process/alter requests and responses easily. :large_orange_diamond:
414 | * [EVCloudKitDao](https://github.com/evermeer/EVCloudKitDao) - Simplified access to Apple's CloudKit :large_orange_diamond:
415 | * [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:
416 | * [OctopusKit](https://github.com/icoco/OctopusKit) - A simplicity but graceful solution for invoke RESTful web service APIs.
417 | * [EVURLCache](https://github.com/evermeer/EVURLCache) - a NSURLCache subclass for handling all web requests that use NSURLRequest :large_orange_diamond:
418 | * [ResponseDetective](https://github.com/netguru/ResponseDetective) - Sherlock Holmes of the networking layer. :large_orange_diamond:
419 | * [agent](https://github.com/hallas/agent) - Minimalistic Swift HTTP request agent for iOS and macOS :large_orange_diamond:
420 | * [Reach](https://github.com/Isuru-Nanayakkara/Reach) - A simple class to check for internet connection availability in Swift. :large_orange_diamond:、
421 | * [SwiftHTTP](https://github.com/daltoniam/SwiftHTTP) - Thin wrapper around NSURLSession in swift. Simplifies HTTP requests. :large_orange_diamond:
422 | * [NetKit](https://github.com/azizuysal/NetKit) - A Concise HTTP Framework in Swift. :large_orange_diamond:
423 | * [MonkeyKing](https://github.com/nixzhu/MonkeyKing) - MonkeyKing helps you post messages to Chinese Social Networks. :large_orange_diamond:
424 | * [NetworkKit](https://github.com/imex94/NetworkKit) - Lightweight Networking and Parsing framework made for iOS, Mac, WatchOS and tvOS. :large_orange_diamond:
425 | * [APIKit](https://github.com/ishkawa/APIKit) - A networking library for building type safe web API client in Swift. :large_orange_diamond:
426 | * [SPTDataLoader](https://github.com/spotify/SPTDataLoader) - The HTTP library used by the Spotify iOS client.
427 | * [SWNetworking](https://github.com/skywite/SWNetworking) - Powerful high-level iOS, macOS and tvOS networking library.
428 | * [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.
429 | * [Swish](https://github.com/thoughtbot/Swish) - Nothing but Net(working) :large_orange_diamond:
430 | * [Malibu](https://github.com/hyperoslo/Malibu) - :surfer: Malibu is a networking library built on promises :large_orange_diamond:
431 | * [UnboxedAlamofire](https://github.com/serejahh/UnboxedAlamofire) - Alamofire + Unbox: the easiest way to download and decode JSON into swift objects. :large_orange_diamond:
432 | * [MMLanScan](https://github.com/mavris/MMLanScan) - An iOS LAN Network Scanner library
433 | * [Domainer](https://github.com/FelixLinBH/Domainer) - Manage multi-domain url auto mapping ip address table
434 | * [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:
435 | * [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.
436 | * [Nikka](https://github.com/JustaLab/Nikka) - A super simple Networking wrapper that supports many JSON libraries, Futures and Rx :large_orange_diamond: ⌚
437 | * [XMNetworking](https://github.com/kangzubin/XMNetworking) - A lightweight but powerful network library with simplified and expressive syntax based on AFNetworking.
438 | * [Merhaba](https://github.com/abdullahselek/Merhaba) - Bonjour networking for discovery and connection between iOS, macOS and tvOS devices.
439 | * [DBNetworkStack](https://github.com/dbsystel/DBNetworkStack) - Resource-oritented networking which is typesafe, extendable, composeable and makes testing a lot easier. :large_orange_diamond:
440 | * [EFInternetIndicator](https://github.com/ezefranca/EFInternetIndicator) - A little swift Internet error status indicator using ReachabilitySwift. :large_orange_diamond:
441 | * [AFNetworking-Synchronous](https://github.com/paulmelnikow/AFNetworking-Synchronous) - Synchronous requests for AFNetworking 1.x, 2.x, and 3.x.
442 | * [QwikHttp](https://github.com/logansease/QwikHttp) - a robust, yet lightweight and simple to use HTTP networking library designed for RESTful APIs. 🔶
443 | * [NetClient](https://github.com/intelygenz/NetClient-iOS) - Versatile HTTP networking library written in Swift 3. :large_orange_diamond:
444 | * [Reactor](https://github.com/MailOnline/Reactor) - Powering your RAC architecture :large_orange_diamond:
445 | * [OHHTTPStubs](https://github.com/AliSoftware/OHHTTPStubs) - 轻松存网络的要求!测试你的应用程序使用假网络数据和定制的响应时间,响应代码和头部.
446 |
447 | #### socket@
448 |
449 | * [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/).
450 | * [SocketRocket](https://github.com/facebook/SocketRocket) - 一个非常不错的 Objective-C 的Socket库.
451 | * [AsyncSocket](https://github.com/roustem/AsyncSocket) - Asynchronous socket networking library for Mac and iOS.
452 | * [Socket通信](http://code.cocoachina.com/view/128711) - 通过AsyncSocket封装的Socket通讯方法,简单实用,通俗易懂,初学者不能错过.
453 | * [GCDAsyncSocket](https://github.com/eugenehp/GCDAsyncSocket) - GCDAsyncSocket , [不错的Demo](https://github.com/smalltask/TestTcpConnection).
454 |
455 | #### 网络下载@
456 |
457 | * [WHCNetWorkKit](https://github.com/netyouli/WHCNetWorkKit) - WHCNetWorkKit 是http网络请求开源库(支持GET/POST 文件上传 后台文件下载 UIButton UIImageView 控件设置网络图片 网络数据工具json/xml 转模型类对象网络状态监听).
458 | * [HSDownloadManager](https://github.com/HHuiHao/HSDownloadManager) - 下载音乐、视频、图片各种资源,支持多任务、断点下载.
459 |
460 | #### IM@
461 |
462 | * [JSQMessagesViewController](https://github.com/jessesquires/JSQMessagesViewController) - 非常👍👍👍 的聊天界面框架.
463 | * [XMPPFramework](https://github.com/robbiehanson/XMPPFramework) - XMPPFramework openfire聊天.
464 | * [Signal-iOS](https://github.com/signalapp/Signal-iOS) - A private messenger for iOS.
465 | * [MessageDisplayKit](https://github.com/xhzengAIB/MessageDisplayKit) - 仿微信聊天,参考JSQMessagesViewController.
466 | * [SXTheQQ](https://github.com/dsxNiubility/SXTheQQ) - 用xmppFramework框架编写QQ程序,主要为了练习通讯的一些原理,界面比较渣 必须要先在本地配置好环境才可以运行。
467 | * [环信](http://www.easemob.com/) - 给开发者更稳定IM云功能。8200万用户考验,好用!(暂无及时语音、视频通话).
468 | * [融云](http://www.rongcloud.cn/) - 即时通讯云服务提供商。(暂无及时语音、视频通话).
469 | * [容联云通讯](http://www.yuntongxun.com) - 提供基于互联网通话,视频会议,呼叫中心/IVR,IM等通讯服务.
470 | * [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).
471 | * [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).
472 | * [SunFlower](https://github.com/HanYaZhou1990/-SunFlower) - 环信聊天demo,比较多功能.
473 | * [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为基础, 实现了简单的蓝牙聊天.
474 | * [网易云信 iOS UI 组件](https://github.com/netease-im/NIM_iOS_UIKit) - 云信 UI 组件,全称 Netease Instant Message Kit,简称 NIMKit,是一款开源的聊天组件,并支持二次开发。开发者只需要稍作配置就可以打造出属于自己的聊天界面,而通过一些自定义的设置,也可以轻松添加业务相关的功能,如阅后即焚,红包,点赞等功能。NIMKit 底层依赖 NIMSDK,是一款由网易开发的 IM SDK,通过它可以轻松快速在你的 App 中集成 IM 功能.
475 | * [TeamTalk](https://github.com/meili/TeamTalk) - TeamTalk is a solution for enterprise IM.
476 | * [QQ界面](https://github.com/weida-studio/QQ)
477 | * [RTCChatUI](https://github.com/Haley-Wong/RTCChatUI) - 仿QQ音视频通话效果.
478 | * [Telegram](https://github.com/peter-iakovlev/Telegram) - Telegram Messenger for iOS.
479 |
480 | #### 网络测试@
481 |
482 | * [Reachability](https://github.com/tonymillion/Reachability) - 苹果提供过一个Reachability类,用于检测网络状态。但是该类由于年代久远,并不支持ARC。该项目旨在提供一个苹果的Reachability类的替代品,支持ARC和block的使用方式。[iOS网络监测如何区分2、3、4G](http://www.jianshu.com/p/efcfa3c87306)
483 | * [SimpleCarrier](https://github.com/crazypoo/SimpleCarrier) - 简单的运营商信息获取.
484 | * [NetworkEye](https://github.com/coderyi/NetworkEye) - 一个网络调试库,可以监控App内HTTP请求并显示请求相关的详细信息,方便App开发的网络调试。
485 | * [RealReachability](https://github.com/dustturtle/RealReachability) - [iOS下的实际网络连接状态检测](http://www.cocoachina.com/ios/20160224/15407.html),解决“如何判断设备是否真正连上互联网?而不是只有网络连接”的问题。
486 | * [LDNetDiagnoService_IOS](https://github.com/Lede-Inc/LDNetDiagnoService_IOS) IOS平台利用ping和traceroute的原理,对指定域名(通常为后台API的提供域名)进行网络诊断,并收集诊断日志.
487 | * [Netfox](https://github.com/kasketis/netfox) - A lightweight, one line setup, iOS / macOS network debugging library! :large_orange_diamond:
488 |
489 | #### WebView与WKWebView@
490 |
491 | * [WebViewJavascriptBridge](https://github.com/marcuswestin/WebViewJavascriptBridge) - 是一个连接javascript和iOS Native交互的开源框架。使用它可以在UIWebview中响应事件并执行Native方法,也可以使用Native方法调用javascript方法, 正如其名,它好像已做桥梁连接了两端.
492 | * [MGTemplateEngine](https://github.com/mattgemmell/MGTemplateEngine) - MGTemplateEngine比较象 PHP 中的 Smarty、FreeMarker 和 Django的模版引擎,是一个轻量级的引擎,简单好用。只要设置很多不同的HMTL模版,就能轻松的实现一个View多种内容格式的显示,对于不熟悉HTML或者减轻 工作量而言,把这些工作让设计分担一下还是很好的,也比较容易实现设计想要的效果.
493 | * [GTMNSString-HTML](https://github.com/siriusdely/GTMNSString-HTML) - 谷歌开源的用于过滤HTML标签.
494 | * [D3Generator](https://github.com/mozhenhau/D3Generator/) - D3Generator根据dict字典生成对象。适用webview和push推送时,根据后台传回字典实现动态跳转.[实现说明](http://mozhenhau.com/2016/02/07/D3Generator实现万能跳转界面,UIWebview与js随意交互/).
495 | * [HybridPageKit](https://github.com/dequan1331/HybridPageKit) - 一个针对新闻类App高性能、易扩展、组件化的通用内容页实现框架.
496 | * [GRMustache](https://github.com/groue/GRMustache) - 一个类似templateEngine的html渲染工具,可以更加有效的帮助大家完成数据生成HTML的过程.
497 | * [iOS-WebView-JavaScript](https://github.com/shaojiankui/iOS-WebView-JavaScript) - iOS UIWebView,WKWebView 与 JavaScript的深度交互.
498 | * [WKWebView](https://github.com/XFIOSXiaoFeng/WKWebView) - OC版WKWebView 支持POST请求 加载本地页面 直接加载网页 JS交互 集成支付宝/微信URL支付功能 仿微信返回按钮.
499 | * [BAWKWebView](https://github.com/BAHome/BAWKWebView) - 用分类封装 WKWebView,一行代码搞定 request、URL、URLString、本地 HTML文件、HTMLString等请求,一个 block 搞定 title、progress、currentURL、当前网页的高度等等所需.
500 | * [WKWebView](https://github.com/Telerik-Verified-Plugins/WKWebView) - A drop-in replacement of UIWebView - useful until Apple release a bug-free WKWebView.
501 | * [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:
502 | * [react-native-webview](https://github.com/react-native-community/react-native-webview) - React Native Cross-Platform WebView.
503 | * [URLPreview](https://github.com/itsmeichigo/URLPreview) - An NSURL extension for showing preview info of webpages :large_orange_diamond: [e]
504 | * [AXWebViewController](https://github.com/devedbox/AXWebViewController) - AXWebViewController is a webViewController to browse web content inside applications.
505 | * [LYWebviewController](https://github.com/halohily/LYWebviewController) - 基于UIWebview-简书文章阅读页面的模仿demo.
506 | * [WKWebViewH5ObjCDemo](https://github.com/CoderJackyHuang/WKWebViewH5ObjCDemo) - 学习如何使用OC实现WKWebView与H5交互,并学习其API使用.
507 | * [PPHTMLImagePreviewDemo](https://github.com/smallmuou/PPHTMLImagePreviewDemo) - 该Repo用于演示APP中点击HTML的图片来预览图片的功能.
508 | * [WKWebViewExtension](https://github.com/dequan1331/WKWebViewExtension) - An extension for WKWebView. Providing menuItems delete 、support protocol 、clear cache of iOS8 and so on.
509 |
510 | #### 网络解析@
511 |
512 | * [ParseSourceCodeStudy](https://github.com/ChenYilong/ParseSourceCodeStudy) - Facebook开源的Parse源码分析【系列】.
513 |
514 | #### JSON@
515 |
516 | * [MJExtension](https://github.com/CoderMJLee/MJExtension) - A fast, convenient and nonintrusive conversion between JSON and model.
517 | * [YYModel](https://github.com/ibireme/YYModel) - High performance model framework for iOS/OSX.
518 | * [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.
519 | * [JSONKit](https://github.com/johnezang/JSONKit) - JSONKit库是非常简单易用而且效率又比较高的,重要的JSONKit适用于ios 5.0以下的版本,使用JSONKit库来解析json文件,只需要下载JSONKit.h 和JSONKit.m添加到工程中;然后加入libz.dylib即可.
520 | * [JSONModel](https://github.com/icanzilb/JSONModel) - 解析服务器返回的Json数据的库,[JSONModel源码解析一](http://www.jianshu.com/p/3d795ea37835).
521 | * [Mantle](https://github.com/Mantle/Mantle) - Mantle主要用来将JSON数据模型化为OC对象, 大系统中使用。[为什么选择Mantle](http://blog.csdn.net/itianyi/article/details/40789273).
522 | * [RFJModel](https://github.com/refusebt/RFJModel) - RFJModel是一个IOS类库,可以将JSON字典自动装填到OBJC对象.
523 | * [XMLDictionary](https://github.com/nicklockwood/XMLDictionary) - ios与mac os平台下xml与NSDictionary相互转化开源类库.
524 | * [DDModel](https://github.com/openboy2012/DDModel) - a HTTP-JSON/XML-ORM-Persistent Object Kit.
525 | * [ambly](https://github.com/mfikes/ambly) - ClojureScript REPL into embedded JavaScriptCore.
526 | * [TouchJSON](https://github.com/TouchCode/TouchJSON) - JSon解析库(早已停止更新).
527 | * [JSON-Framework](https://github.com/stig/json-framework) - JSON(JavaScript对象符号)是一种轻量的数据交换格式,易于读写人类和计算机一样。该框架实现了用在Objective-C严格的JSON解析器和编码器.
528 | * [Groot](https://github.com/gonzalezreal/Groot) - From JSON to Core Data and back.
529 | * [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/)介绍它的使用.
530 | * [FastEasyMapping](https://github.com/Yalantis/FastEasyMapping) - 一个快速对json进行序列化和反序列化的工具.
531 | * [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.
532 | * [Cereal](https://github.com/Weebly/Cereal) - 对象序列化三方库 Swift object serialization.
533 | * [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.
534 | * [Tyro](https://github.com/typelift/Tyro) - Functional JSON parsing and encoding :large_orange_diamond:
535 | * [Unbox](https://github.com/JohnSundell/Unbox) - The easy to use Swift JSON decoder :large_orange_diamond:
536 | * [JSONJoy-Swift](https://github.com/daltoniam/JSONJoy-Swift) - Convert JSON to Swift objects. :large_orange_diamond:
537 | * [LazyObject](https://github.com/iwasrobbed/LazyObject) - Lazily deserialize JSON into strongly typed Swift objects :large_orange_diamond:
538 | * [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:
539 | * [AlamofireObjectMapper](https://github.com/tristanhimmelman/AlamofireObjectMapper) - An Alamofire extension which converts JSON response data into swift objects using ObjectMapper :large_orange_diamond:
540 | * [WAMapping](https://github.com/Wasappli/WAMapping) - 一个将字典和iOS对象相互转化的库.
541 |
542 | #### XML&HTML@
543 |
544 | * [Ji](https://github.com/honghaoz/Ji) - XML/HTML parser for Swift. :large_orange_diamond:
545 | * [Ono](https://github.com/mattt/Ono) - A sensible way to deal with XML & HTML for iOS & OS X.
546 | * [AlamofireXmlToObjects](https://github.com/evermeer/AlamofireXmlToObjects) - Fetch a XML feed and parse it into objects :large_orange_diamond:
547 | * [Fuzi](https://github.com/cezheng/Fuzi) - A fast & lightweight XML & HTML parser in Swift with XPath & CSS support :large_orange_diamond:
548 | * [Kanna](https://github.com/tid-kijyun/Kanna) - Kanna(鉋) is an XML/HTML parser for MacOSX/iOS. :large_orange_diamond:
549 | * [SwiftyXMLParer](https://github.com/yahoojapan/SwiftyXMLParser) - Simple XML Parser implemented in Swift :large_orange_diamond:
550 | * [HTMLKit](https://github.com/iabudiab/HTMLKit) - An Objective-C framework for your everyday HTML needs.
551 | * [SWXMLHash](https://github.com/drmohundro/SWXMLHash) - Simple XML parsing in Swift :large_orange_diamond:
552 |
553 | #### block@
554 |
555 | * [adblockfast](https://github.com/rocketshipapps/adblockfast) - Adblock Fast is a new, faster ad blocker for iOS, Android, Chrome, and Opera. https://adblockfast.com/.
556 |
557 | #### 数据存储@
558 |
559 | * [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 进行混合使用.
560 | * [GDataBase](https://github.com/GIKICoder/GDataBase) - 基于FMDB的ORM数据库存储解决方案. 面向模型和线程安全的API. 一句代码存储,读取.对存储模型无需继承BaseObject. 可自定义多主键,可使用sqlite关键字.可自定义序列化字段等.支持模型黑名单.支持数据库表存储value base64编/解码.对模型无侵入,只需遵守相关协议即可.极大方便项目中使用.
561 | * [WCDB](https://github.com/Tencent/wcdb) - Tencent:WCDB is an efficient, complete, easy-to-use mobile database framework for iOS, macOS.
562 | * [realm-cocoa](https://github.com/realm/realm-cocoa) - 一个号称要代替Core Data & SQLite的用于移动端的数据库,非常不错👍👍 ,同时支持Swift.
563 | * [YapDatabase](https://github.com/yapstudios/YapDatabase) - YapDatabase is an extensible database for iOS & Mac.
564 | * [CoreModel](https://github.com/CharlinFeng/CoreModel) - Replace CoreData.
565 | * [WHC_ModelSqliteKit](https://github.com/netyouli/WHC_ModelSqliteKit) - 专业的数据库存储解决方案.
566 | * [JQFMDB](https://github.com/gaojunquan/JQFMDB) - FMDB的封装,操作简单,线程安全,扩展性强,直接操作model或dictionary.
567 | * [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.
568 | * [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.
569 | * [GXDatabaseUtils](https://github.com/Gerry1218/GXDatabaseUtils) - 在FMDB基础上的工具.
570 | * [MagicalRecord](https://github.com/magicalpanda/MagicalRecord) - CoreData第一库,MagicalRecord就像是给Core Data提供了一层外包装,隐藏掉所有不相关的东西。 其中事务管理及查询是其比较大的亮点,整套 API 功能完整。
571 | * [GKDatabase](https://github.com/ChrisCaixx/GKDatabase) - 基于SQLite3简单封装了下,实现了一行代码解决增删改查等常用的功能!并没有太过高深的知识,主要用了runtime和KVC:请看Demo~ 原理篇请看这里:[简书地址](http://www.jianshu.com/p/0e598147debc).
572 | * [CoreStore](https://github.com/AfryMask/AFBrushBoard) - Core Data 管理类库。 其中事务管理及查询是其比较大的亮点,整套 API 功能完整.
573 | * [mogenerator](http://rentzsch.github.io/mogenerator/) - mogenerator为你定义了的Core Data生成默认的数据类。与xCode不一样的是(xCode一个Entity只生成一个NSManagedObject的子类),mogenerator会为每一个Entity生成两个类。一个为机器准备,一个为人类准备。为机器准备的类一直去匹配data model。为人类准备的类就给你轻松愉快的去修改和保存.
574 | * [Presentation](https://github.com/hyperoslo/Presentation) - 重量级好项目 Presentation,它可以方便你制作定制的动画式教程、Release Notes、个性化演讲稿等.
575 | * [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) 。
576 | * [Couchbase Mobile](https://developer.couchbase.com/mobile/) - Couchbase document store for mobile with cloud sync.
577 | * [FCModel](https://github.com/marcoarment/FCModel) - An alternative to Core Data for people who like having direct SQL access.
578 | * [Zephyr](https://github.com/ArtSabintsev/Zephyr) - Effortlessly synchronize NSUserDefaults over iCloud. :large_orange_diamond:
579 | * [Storez](https://github.com/SwiftKitz/Storez) - Safe, statically-typed, store-agnostic key-value storage (with namespace support). :large_orange_diamond:
580 | * [ParseAlternatives](https://github.com/relatedcode/ParseAlternatives) - A collaborative list of Parse alternative backend service providers.
581 | * [TypedDefaults](https://github.com/tasanobu/TypedDefaults) - TypedDefaults is a utility library to type-safely use NSUserDefaults. :large_orange_diamond:
582 | * [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:
583 | * [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]
584 | * [ObjectiveRocks](https://github.com/iabudiab/ObjectiveRocks) - An Objective-C wrapper of Facebook's RocksDB - A Persistent Key-Value Store for Flash and RAM Storage.
585 | * [OHMySQL](https://github.com/oleghnidets/OHMySQL) - An Objective-C wrapper of MySQL C API.
586 | * [OneStore](https://github.com/muukii/OneStore) - A single value proxy for NSUserDefaults, with clean API. :large_orange_diamond:
587 | * [Nora](https://github.com/SD10/Nora) - Nora is a Firebase abstraction layer for working with FirebaseDatabase and FirebaseStorage. :large_orange_diamond:
588 | * [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:
589 | * [StorageKit](https://github.com/StorageKit/StorageKit) - Your Data Storage Troubleshooter 🛠 .
590 | * [sequelpro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS.
591 |
592 | #### 缓存处理@
593 |
594 | * [YTKKeyValueStore](https://github.com/yuantiku/YTKKeyValueStore) - Key-Value存储工具类,[说明](http://tangqiaoboy.gitcafe.io/blog/2014/10/03/opensouce-a-key-value-storage-tool/)。
595 | * [JLKeychain](https://github.com/jl322137/JLKeychain) - 快捷使用keychain存储数据的类,使keychain像NSUserDefaults一样工作.
596 | * [UICKeyChainStore](https://github.com/kishikawakatsumi/UICKeyChainStore) - 封装keychain,使keychain像NSUserDefaults一样简单.
597 | * [sskeychain](https://github.com/soffes/sskeychain) - SSKeyChains对苹果安全框架API进行了简单封装,支持对存储在钥匙串中密码、账户进行访问,包括读取、删除和设置.
598 | * [KeychainAccess](https://github.com/kishikawakatsumi/KeychainAccess) - 管理Keychain接入的小助手.
599 | * [YYCache](https://github.com/ibireme/YYCache) - 高性能的 iOS 缓存框架.
600 | * [RuntimeDemo](https://github.com/CoderJackyHuang/RuntimeDemo) - runtime自动归档/解档,[源码分析](http://www.henishuo.com/runtime-archive-unarchive-automaticly/).
601 |
602 | #### 序列化@
603 |
604 | * [FastCoding](https://github.com/nicklockwood/FastCoding) - 是用来替代OSX及iOS中默认的序列化实现。它结构简单(仅头文件和.m文件两个)、支持ARC,线程安全,速度较内置实现更快.
605 |
606 | #### coreData@
607 |
608 | * [CWCoreData](https://github.com/jayway/CWCoreData) - Additions and utilities to make it concurrency easier with the Core Data framework.
609 | * [ObjectiveRecord](https://github.com/supermarin/ObjectiveRecord) - ActiveRecord for Objective-C.
610 | * [SSDataKit](https://github.com/soffes/SSDataKit) - Eliminate your Core Data boilerplate code.
611 | * [ios-queryable](https://github.com/martydill/ios-queryable) - ios-queryable is an implementation of IQueryable/IEnumerable for Core Data.
612 | * [Ensembles](https://github.com/drewmccormack/ensembles) - A synchronization framework for Core Data.
613 | * [SLRESTfulCoreData](https://github.com/OliverLetterer/SLRESTfulCoreData) - Objc naming conventions, autogenerated accessors at runtime, URL substitutions and intelligent attribute mapping.
614 | * [Mogenerator](https://github.com/rentzsch/mogenerator) - Automatic Core Data code generation.
615 | * [HardCoreData](https://github.com/Krivoblotsky/HardCoreData) - CoreData stack and controller that will never block UI thread.
616 | * [encrypted-core-data](https://github.com/project-imas/encrypted-core-data) - Core Data encrypted SQLite store using SQLCipher.
617 | * [MagicalRecord](https://github.com/magicalpanda/MagicalRecord) - Super Awesome Easy Fetching for Core Data.
618 | * [QueryKit](https://github.com/QueryKit/QueryKit) - A simple type-safe Core Data query language. :large_orange_diamond:
619 | * [CoreStore](https://github.com/JohnEstropia/CoreStore) - Powerful Core Data framework for Incremental Migrations, Fetching, Observering, etc. :large_orange_diamond:
620 | * [Core Data Query Interface](https://github.com/prosumma/CoreDataQueryInterface) - A type-safe, fluent query framework for Core Data. :large_orange_diamond:
621 | * [CoreDataDandy](https://github.com/fuzz-productions/CoreDataDandy) - A feature-light wrapper around Core Data that simplifies common database operations. :large_orange_diamond:
622 | * [CoreDataStack](https://github.com/bignerdranch/CoreDataStack) - The Big Nerd Ranch Core Data Stack :large_orange_diamond:
623 | * [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:
624 | * [DataKernel](https://github.com/mrdekk/DataKernel) - Simple CoreData wrapper to ease operations. :large_orange_diamond:
625 | * [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.
626 | * [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:
627 |
628 | #### 动画@
629 |
630 | * [lottie-ios](https://github.com/airbnb/lottie-ios) - 非常赞 一个用来渲染After Effects矢量动画的iOS库,同时支持iOS,Android与ReactNative的开发.
631 | * [AIAnimationDemo](https://github.com/aizexin/AIAnimationDemo) - 非常不错的一个各种动画Demo集合库👍👍 .
632 | * [pop](https://github.com/facebook/pop) - facebook出品的非常赞的动画引擎.
633 | * [AwesomeMenu](https://github.com/levey/AwesomeMenu) - 该项目主要是使用 CoreAnimation 还原了 Path menu 的动画效果 Path 2.0 menu using CoreAnimation :) https://github.com/levey/AwesomeMenu
634 | * [MMTweenAnimation](https://github.com/adad184/MMTweenAnimation) - 一个基于 POP 的扩展,提供了 10 种自定义的动效.
635 | * [XHLaunchAd](https://github.com/CoderZhuXH/XHLaunchAd) - XHLaunchAd开机启动广告解决方案-支持静态/动态图片广告,mp4视频广告,全屏/半屏广告、兼容iPhone/iPad.
636 | * [Core Animation笔记,基本的使用方法](http://www.starming.com/index.php?v=index&view=62) - Core Animation笔记,基本的使用方法:1.基本动画,2.多步动画,3.沿路径的动画,4.时间函数,5.动画组.
637 | * [awesome-ios-animation](https://github.com/sxyx2008/awesome-ios-animation) - [iOS Animation 主流炫酷动画框架(特效)收集整理](https://github.com/sxyx2008/DevArticles/issues/91) 收集整理了下iOS平台下比较主流炫酷的几款动画框架.
638 | * [AGGeometryKit](https://github.com/agens-no/AGGeometryKit) - 几何图形框架,把AGGeometryKit和POP结合起来使用,可实现非常棒的动态和动画.
639 | * [FleaMarket](https://github.com/SunLiner/FleaMarket) - "咸鱼"新特性-视频动画.
640 | * [JHChainableAnimations](https://github.com/jhurray/JHChainableAnimations) - 在应用中采用链式写出酷炫的动画效果, 使代码更加清晰易读,利用block实现的链式编程,同时支持Swift.
641 | * [awesome-animation](https://github.com/Animatious/awesome-animation) - 动效库.
642 | * [BCMagicTransition](https://github.com/boycechang/BCMagicTransition) - 一个动效框架,用于自定义UINavigationController的切换动画,效果类似 Keynote 软件中 Magic Move 切换。它可以用于任意两个UIViewController之间,只需指定两个VC中的相同元素即可.
643 | * [popping](https://github.com/schneiderandre/popping) - popping是一个POP使用实例工程.
644 | * [MMTweenAnimation](https://github.com/adad184/MMTweenAnimation) - facebook POP的自定义动画扩展(基于POPCustomAnimation) 提供10种函数式动画.
645 | * [ZQLRotateMenu](https://github.com/zangqilong198812/ZQLRotateMenu) - 这是一个旋转视图的选择器.
646 | * [CoolLoadAniamtion](https://github.com/zangqilong198812/CoolLoadAniamtion) - 一个简单但是效果不错的loading动画.
647 | * [Animations](https://github.com/YouXianMing/Animations) - The Animation Collection.
648 | * [JSDownloadView](https://github.com/Josin22/JSDownloadView) - 精巧顺滑的下载动画.
649 | * [SYAppStart](https://github.com/yushuyi/SYAppStart) - App启动插画的自定义过度.
650 | * [VJDeviceSpecificMedia](https://github.com/victorjiang/UIImage-VJDeviceSpecificMedia/) - [如何根据设备选择不同尺寸的图片](http://www.imooc.com/wenda/detail/249271) 可以通过设置不同尺寸设备的LaunchImage,来使得App适配这些设备,要是在不同不同尺寸设备上使用不同大小的图片,则需要在代码中一一判断,然后加载.
651 | * [KYBezierBounceView](https://github.com/KittenYang/KYBezierBounceView) - 手势控制贝塞尔曲线,取消手势贝塞尔曲线会有反弹效果.
652 | * [cadisplaylinkanduibezierpath](http://kittenyang.com/cadisplaylinkanduibezierpath/) - CADisplayLink结合UIBezierPath的神奇妙用.
653 | * [KYCuteView](https://github.com/KittenYang/KYCuteView) - 实现类似QQ消息拖拽消失的交互+GameCenter的浮动小球效果,[分析](http://kittenyang.com/drawablebubble/).
654 | * [KYWaterWaveView](https://github.com/KittenYang/KYWaterWaveView) - 一个内置波浪动画的UIView,里面有鱼跳跃水溅起来的效果.
655 | * [KYPingTransition](https://github.com/KittenYang/KYPingTransition) - 实现圆圈放大放小的转场动画,可以根据自己的需要使用Paper中的弹性效果,有Material风格.
656 | * [KYNewtonCradleAnimiation](https://github.com/KittenYang/KYNewtonCradleAnimiation) - 牛顿摆动画.
657 | * [LayerPlayer](https://github.com/scotteg/LayerPlayer) - 一款全面展示核心动画 API 示例项目(上架应用)。包括 CALayer, CAScrollLayer, CATextLayer, AVPlayerLayer, CAGradientLayer, CAReplicatorLayer, CATiledLayer, CAShapeLayer, CAEAGLLayer, CATransformLayer, CAEmitterLayer 等使用的互动演示.
658 | * [KYShareMenu](https://github.com/KittenYang/KYShareMenu) - 带弹性动画的分享菜单.
659 | * [Context-Menu.iOS](https://github.com/Yalantis/Context-Menu.iOS) - 可以为app的菜单添加漂亮的动画内容,可自定义icon,并可根据自己的喜好设计单元格和布局.
660 | * [DeformationButton](https://github.com/LuciusLu/DeformationButton) - 一个简单的变换形状动画按钮.
661 | * [UnReadBubbleView](https://github.com/heroims/UnReadBubbleView) - UnReadBubbleView是一个能够拖拽并拉长的气泡视图。拖拽到一定的长度会消失,可以通过系数设置来控制拖拽的长度。气泡也支持多种属性设置。
662 | * [PPDragDropBadgeView](https://github.com/smallmuou/PPDragDropBadgeView) - 实现了类似于QQ 5.0 水滴拖拽效果. 支持iOS 5.0+ ARC,气泡能够带有数字标识,同时支持消失block方法。消失时还带有消失效果动画。
663 | * [GiftCard-iOS](https://github.com/MartinRGB/GiftCard-iOS) - 礼品卡购买的炫酷动画.
664 | * [GiftCard-Implementation](https://github.com/MartinRGB/GiftCard-iOS) - 购买的炫酷动画.
665 | * [KIPageView](https://github.com/smartwalle/KIPageView) - 无限循环PageView,横向TableView,无限轮播.
666 | * [简单实用的无限循环轮播图](http://code.cocoachina.com/view/128288) - 简单实用的无限循环轮播图.
667 | * [CPInfiniteBanner](https://github.com/crespoxiao/CPInfiniteBanner) - 是一个循环播放的组件,可以左右无缝滑动,3个imageview实现。[高效图片轮播,两个ImageView实现](http://ios.jobbole.com/84711/).
668 | * [XTLoopScroll](https://github.com/Akateason/XTLoopScroll) - 用两个 timer 三个重用的 view 实现无限循环 scrollView,1自动轮播 2点击监听回调当前图片 3手动滑动后重新计算轮播的开始时间, 良好的用户体验.
669 | * [HotGirls](https://github.com/zangqilong198812/HotGirls) - 卡片动画.
670 | * [Ease](https://github.com/roberthein/Ease) - Animate everything with Ease.
671 | * [KYAnimatedPageControl](https://github.com/KittenYang/KYAnimatedPageControl) - 除了滚动视图时PageControl会以动画的形式一起移动,点击目标页还可快速定位。支持两种样式:粘性小球和旋转方块。
672 | * [Presentation](https://github.com/hyperoslo/Presentation) - 一个类似RazzleDazzle的框架.
673 | * [FillableLoaders](https://github.com/poolqf/FillableLoaders) - 基于 CGPaths 可定制个性化填空式装载类库。附水波上涨式示例.
674 | * [SXWaveAnimate](https://github.com/dsxNiubility/SXWaveAnimate) - 实现非常美观的灌水动画.
675 | * [LSPaomaView](https://github.com/liusen001/LSPaomaView) - 可循环滚动的较长文字,跑马灯,效果很好,一句话集成.
676 | * [Cheetah](https://github.com/suguru/Cheetah) - 易用、高可读链式动画类库。另一个类似类库是 [DKChainableAnimationKit](https://github.com/Draveness/DKChainableAnimationKit).
677 | * [CKWaveCollectionViewTransition](https://github.com/CezaryKopacz/CKWaveCollectionViewTransition) - swift, UICollectionViewController之间切换的动画.
678 | * [TKSubmitTransition](https://github.com/entotsu/TKSubmitTransition) - 基于 UIButton 的登录加载、返回按钮转场动画组件及示例.
679 | * [ARAnimation](https://github.com/AugustRush/ARAnimation) - ARAnimation 对 Core Animation 进行了封装, 帮助 iOS 开发者能更加便捷的在项目中使用动画.
680 | * [渐变特效文字](http://code.cocoachina.com/view/127174) - 做了一个仿iPhone的移动滑块来解锁的渐变特效文字,还有一个类似ktv歌词显示的文字特效.
681 | * [HYAwesomeTransition](https://github.com/nathanwhy/HYAwesomeTransition) - 模仿格瓦拉的转场效果.
682 | * [RYCuteView](https://github.com/Resory/RYCuteView) - 用UIBezierPath实现果冻效果。 [教程](http://www.jianshu.com/p/21db20189c40)
683 | * [STLBGVideo](https://github.com/StoneLeon/STLBGVideo) - STLBGVideo让您的视图控制器的自定义backgroundvideo,[实现说明1](http://www.jianshu.com/p/c4704c086b67)、[实现说明2](http://www.jianshu.com/p/3dcebf0493d1).
684 | * [MYBlurIntroductionView](https://github.com/MatthewYork/MYBlurIntroductionView) - 方便好用的引导类库,在App注册登录页面可以用到.
685 | * [ZFCityGuides](https://github.com/WZF-Fei/ZFCityGuides) - 实现City Guides的动画效果,数字动态变化的动画效果.
686 | * [INPopoverController](https://github.com/indragiek/INPopoverController) - OS X可自由定制的 Popover 视图.
687 | * [WZXJianShuPopDemo](https://github.com/Wzxhaha/WZXJianShuPopDemo) - 仿简书、淘宝等等的View弹出效果,已封装好,使用简单。[实现原理](http://www.jianshu.com/p/a697d2a38b3c)
688 | * [LSAnimator](https://github.com/Lision/LSAnimator) - 非侵入式的多链式动画.
689 | * [PearlSaver](https://github.com/insidegui/PearlSaver) - Face ID detection animation as a screensaver.
690 |
691 | #### 转场@
692 |
693 | * [RZTransitions](https://github.com/Raizlabs/RZTransitions) - A library of custom iOS View Controller Animations and Interactions.
694 | * [AnimatedTransitionGallery](https://github.com/shu223/AnimatedTransitionGallery) - A gallery app of custom animated transitions for iOS.
695 | * [VCTransitionsLibrary](https://github.com/ColinEberhardt/VCTransitionsLibrary) - 不错的转场动画库.
696 | * [WXSTransition](https://github.com/alanwangmodify/WXSTransition) - 转场动画集合.
697 |
698 | #### 多媒体@
699 | #### GIF@
700 |
701 | * [FLAnimatedImage](https://github.com/Flipboard/FLAnimatedImage) - 高性能GIF动画引擎.
702 | * [YLGIFImage](https://github.com/liyong03/YLGIFImage) - 异步方式实现突Gif突破编码、显示,低内存占用.
703 | * [AnimatedGIFImageSerialization](https://github.com/mattt/AnimatedGIFImageSerialization) - Complete Animated GIF Support for iOS, with Functions, NSJSONSerialization-style Class, and (Optional) UIImage Swizzling.
704 | * [XAnimatedImage](https://github.com/khaledmtaha/XAnimatedImage) - XAnimatedImage is a performant animated GIF engine for iOS written in Swift based on FLAnimatedImage :large_orange_diamond:
705 | * [SwiftGif](https://github.com/bahlo/SwiftGif) - :sparkles: A small UIImage extension with gif support :large_orange_diamond:
706 | * [APNGKit](https://github.com/onevcat/APNGKit) - High performance and delightful way to play with APNG format in iOS. :large_orange_diamond:
707 | * [YYImage](https://github.com/ibireme/YYImage) - Image framework for iOS to display/encode/decode animated WebP, APNG, GIF, and more.
708 | * [NSGIF2](https://github.com/metasmile/NSGIF2) - Simplify creation of a GIF from the provided video file url.
709 | * [SwiftyGif](https://github.com/kirualex/SwiftyGif) - High performance GIF engine :large_orange_diamond:
710 | * [UIImageView-PlayGIF](https://github.com/yfme/UIImageView-PlayGIF) - UIImageView-PlayGIF.
711 | * [droptogif](https://github.com/mortenjust/droptogif) - droptogif视频拖拽到应用窗口后自动转换为 GIF 动画(其转换进程动画效果也超赞).
712 |
713 | #### VR@
714 |
715 | * [HTY360Player](https://github.com/hanton/HTY360Player) - 一款360度全景视频播放器.
716 | * [ios-360-videos](https://github.com/NYTimes/ios-360-videos) - 基于AVPlayer的360度全景视频播放器.
717 |
718 | #### AR@
719 |
720 | * [Awesome-ARKit](https://github.com/olucurious/Awesome-ARKit) - A curated list of awesome ARKit projects and resources. Feel free to contribute.
721 | * [AR-Source](https://github.com/GeekLiB/AR-Source) - AR开发资料汇总.
722 | * [ARShooter](https://github.com/farice/ARShooter) - A demo Augmented Reality shooter made with ARKit in Swift (iOS 11) http://texnotes.me/post/5/.
723 | * [SmileToUnlock](https://github.com/rsrbk/SmileToUnlock) - This library uses ARKit Face Tracking in order to catch a user's smile.
724 | * [TGLAugmentedRealityView](https://github.com/gleue/TGLAugmentedRealityView) - Augmented Reality made easy -- place overlays on a camera preview and adjust their position depending on device attitude.
725 | * [ARImageViewer](https://github.com/keayou/ARImageViewer) - 一款基于ARKit的AR图片查看器.
726 |
727 | #### 二维码@
728 |
729 | * [ZXingObjC](https://github.com/TheLevelUp/ZXingObjC) - 👍 An Objective-C Port of ZXing.
730 | * [LBXScan](https://github.com/MxABC/LBXScan) - 👍 A barcode and qr code scanner (二维码、扫码、扫一扫、ZXing和ios系统自带扫码封装,扫码界面效果封装)(Objective-C和Swift均支持).
731 | * [原生实现扫描二维码条码](http://code.cocoachina.com/view/129108) - iOS原生实现扫描二维码条码.
732 | * [ZFScan](https://github.com/Zirkfied/ZFScan) - 仿微信 二维码/条形码 扫描.
733 | * [HMQRCodeScanner](https://github.com/liufan321/HMQRCodeScanner) - 包含 UI 界面的轻量级二维码扫描及生成框架,提供一个导航控制器,扫描 二维码 / 条形码;能够生成指定 字符串 + avatar(可选) 的二维码名片;能够识别相册图片中的二维码(iOS 64 位设备).
734 | * [QRCatcher](https://github.com/100mango/QRCatcher) - 一个简洁美观的二维码扫描应用, [iOS学习:AVFoundation 视频流处理--二维码].
735 | * [BarcodeScanner](https://github.com/hyperoslo/BarcodeScanner) - 带状态控制的条码扫描库,支持处理相机权限、自定义颜色和提示信息,不依赖其他第三方库).
736 | * [MQRCodeReaderViewController](https://github.com/zhengjinghua/MQRCodeReaderViewController) - 二维码扫描控件.
737 | * [QRWeiXinDemo](https://github.com/lcddhr/QRWeiXinDemo) - 仿微信二维码扫描,中间透明区域.
738 | * [EFQRCode](https://github.com/EyreFree/EFQRCode) - iOS 花式二维码生成库.
739 |
740 | #### PDF@
741 |
742 | * [Reader](https://github.com/vfr/Reader) - Reader可提供类似iBooks的文档导航,支持屏幕旋转和所有方向,并通过密码保护加密PDF文件,支持PDF链接和旋转页面.
743 | * [PDFXKit](https://github.com/PSPDFKit/PDFXKit) - A drop-in replacement for Apple PDFKit powered by our PSPDFKit framework under the hood.
744 |
745 | #### 流媒体@
746 |
747 | #### 音频@
748 |
749 | * [KTVHTTPCache](https://github.com/ChangbaDevs/KTVHTTPCache) - 唱吧出品音视频在线播放缓存框架.
750 | * [AudioKit](https://github.com/AudioKit/AudioKit) - Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS.
751 | * [ESTMusicPlayer](https://github.com/Aufree/ESTMusicPlayer) - 一个简洁、易用的音乐播放器.
752 | * [EZAudio](https://github.com/syedhali/EZAudio) - EZAudio 是一个 iOS 和 OSX 上简单易用的音频框架,根据音量实时显示波形图,基于Core Audio,适合实时低延迟音频处理,非常直观。[中文介绍](https://segmentfault.com/blog/news/1190000000370957),[官网](http://www.syedharisali.com/about).
753 | * [novocaine](https://github.com/alexbw/novocaine) - 高性能的音频,支持iOS and Mac OS X.
754 | * [ROMPlayer](https://github.com/AudioKit/ROMPlayer) - AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player.
755 | * [SubtleVolume](https://github.com/andreamazz/SubtleVolume) - 用更微妙的指示器替换系统卷弹出窗口.
756 | * [NVDSP](https://github.com/bartolsthoorn/NVDSP) - iOS/OSX DSP for audio (with Novocaine).
757 | * [IQAudioRecorderController](https://github.com/hackiftekhar/IQAudioRecorderController) - 一个可以内置App的、通用的、带有漂亮的用户界面音频录制程序.
758 | * [QuietModemKit](https://github.com/quiet/QuietModemKit) - 静态调制解调器的iOS框架(声音数据).
759 | * [IOS录音和播放功能demo](http://d.cocoachina.com/code/detail/285717) - 比较完整的ios录音和播放功能的实现.
760 | * [MCAudioInputQueue](https://github.com/msching/MCAudioInputQueue) - 简易录音类,基于AudioQueue的.
761 | * [MusicPlayert](https://github.com/liuFangQiang/MusicPlayer) - MusicPlayert音乐播放器,用reveal可以查看层次关系,主要实现了歌词的同步显示.
762 | * [音乐播放器](http://code.cocoachina.com/view/129435) - 音乐播放器:显示歌词.
763 | * [amr](http://www.penguin.cz/~utx/amr) - 做即时通讯的音频处理,录音文件是m4a,便于web端的音频播放.
764 | * [边录音边转码](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 音频格式。只支持真机运行调试.
765 | * [DFPlayer](https://github.com/ihoudf/DFPlayer) - 简单又灵活的iOS音频播放组件.
766 |
767 | #### 视频@
768 | #### 视频播放@
769 |
770 | * [FFmpeg](https://github.com/FFmpeg/FFmpeg) - 一个处理多媒体数据的开源、免费的库,可以用来记录、转换数字音频、视频,并能将其转化为流. [ffmpeg](http://ffmpeg.org/) - ffmpeg官网,[FFmpeg在iOS上完美编译](http://www.cocoachina.com/ios/20150514/11827.html).
771 | * [vlc](https://github.com/videolan/vlc) - VLC media player.
772 | * [mpv](https://github.com/mpv-player/mpv) - 非常👍👍👍 🎥 Video player based on MPlayer/mplayer2.
773 | * [ijkplayer](https://github.com/Bilibili/ijkplayer) - 非常赞 B站开源的视频播放器,支持Android和iOS. [iOS中集成ijkplayer视频直播框架](http://www.jianshu.com/p/1f06b27b3ac0)。
774 | * [ZFPlayer](https://github.com/renzifeng/ZFPlayer) - 非常赞 基于AVPlayer,支持横屏、竖屏(全屏播放还可锁定屏幕方向),上下滑动调节音量、屏幕亮度,左右滑动调节播放进度.
775 | * [WMPlayer](https://github.com/zhengwenming/WMPlayer) 赞 WMPlayer视频播放器,AVPlayer的封装,继承UIView,想怎么玩就怎么玩。支持播放mp4、m3u8、3gp、mov,网络和本地视频同时支持。全屏和小屏播放同时支持。 cell中播放视频,全屏小屏切换自如.
776 | * [XCDYouTubeKit](https://github.com/0xced/XCDYouTubeKit) - 一个能够在国内播放YouTube视频的播放器.
777 | * [MRVLCPlayer](https://github.com/Maru-zhang/MRVLCPlayer) - 相信Mac用户都很熟悉一款VLC播放器,这款播放器在Mac上表现异常优异,支持的格式几乎涵盖了所有格式(就是这么屌!)。没错,就是它创造者--VideoLAN,开源了一款牛逼的视频播放框架MobileVLCKit![介绍信息:] (http://gold.xitu.io/entry/578c304b2e958a0054320503?from=singlemessage&isappinstalled=1).
778 | * [plask](https://github.com/deanm/plask) - Plask is a multimedia programming environment.
779 | * [KRVideoPlayer](https://github.com/36Kr-Mobile/KRVideoPlayer) - 36Kr出品的类似Weico的播放器,支持竖屏模式下全屏播放.
780 | * [JPVideoPlayer](https://github.com/Chris-Pan/JPVideoPlayer) - 类似微博主页在列表中自动播放视频.
781 | * [HcdCachePlayer](https://github.com/Jvaeyhcd/HcdCachePlayer) - 在线视频边下边播,支持缓存到本地.
782 | * [bilibili-mac-client](https://github.com/typcn/bilibili-mac-client) - 👍 bilibili非官方的mac客户端.
783 | * [PBJVideoPlayer](https://github.com/piemonte/PBJVideoPlayer) - 一个易用的流媒体播放器.
784 | * [KrVideoPlayerPlus](https://github.com/PlutusCat/KrVideoPlayerPlus) - 根据36Kr开源的KRVideoPlayer 进行修改和补充实现一个轻量级的视频播放器,满足大部分视频播放需求.
785 | * [PKShortVideo](https://github.com/pepsikirk/PKShortVideo) - iOS仿微信小视频功能开发优化记录.
786 | * [SGPlayer](https://github.com/libobjc/SGPlayer) - A powerful media player framework for iOS, macOS, and tvOS. Support 360° panorama video, VR video. RTMP streaming.
787 | * [AVAnimator](http://www.modejong.com/AVAnimator/) - 一个不错的原生的开源视频库,可以轻松实现视频、音频的功能.
788 | * [SSVideoPlayer](https://github.com/immrss/SSVideoPlayer) - 一个支持本地和网络视频播放的库.
789 | * [SRGMediaPlayer-iOS](https://github.com/SRGSSR/SRGMediaPlayer-iOS) - 一个提供简洁的方法为iOS应用添加通用的音频、视频播放的库.
790 | * [ABMediaView](https://github.com/andrewboryk/ABMediaView) - 一个UIImageView的子类,可以播放本地和来源于网络的图片、视频、GIF和音频,可以最小化和全屏,同时支持视频设置GIF预览图.
791 | * [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).
792 | * [JPVideoPlayer](https://github.com/newyjp/JPVideoPlayer) - Automatic play video in UITableView like Weibo home page in main thread and never block it.
793 | * [StreamingKit](https://github.com/tumtumtum/StreamingKit) - StreamingKit流媒体音乐播放器.
794 | * [FreeStreamer](https://github.com/muhku/FreeStreamer) - FreeStreamer流媒体音乐播放器,cpu占用非常小.
795 | * [DOUAudioStreamer](https://github.com/douban/DOUAudioStreamer) - DOUAudioStreamer豆瓣的音乐流媒体播放器.
796 | * [fmpro](https://github.com/fmpro/fmpro) - 电台播放器,支持锁屏歌词,支持基本播放流程,歌词展示,后台锁屏播放和控制以及锁屏后封面+歌词,[fmpro_R](https://github.com/jovisayhehe/fmpro_R) .
797 | * [TBPlayer](https://github.com/suifengqjn/TBPlayer) - 视频变下变播,把播放器播放过的数据流缓存到本地,支持拖动,采用avplayer.[实现说明](http://www.jianshu.com/p/990ee3db0563).
798 | * [IWatch](https://github.com/280772270/IWatch) - 一个视频日报类的app 播放器用到了AVFoudation.
799 | * [自定义视频播放器AVPlayer](http://code.cocoachina.com/view/128253) - 利用系统类AVPlayer实现完全自定义视频播放器,显示播放时间,缓存等功能。代码清晰,注释详细.
800 | * [DraggableYoutubeFloatingVideo](https://github.com/vizllx/DraggableYoutubeFloatingVideo) - 展示像类似Youtube移动应用的那种浏览视频的效果,当点击某视频时能够从右下方弹出一个界面,并且该界面能够通过手势,再次收缩在右下方并继续播放,通过AutoLayout设计实现.
801 | * [SRGMediaPlayer-iOS](https://github.com/SRGSSR/SRGMediaPlayer-iOS) - The SRG Media Player library for iOS provides a simple way to add a universal audio / video player to any iOS application.
802 | * [ios-360-videos](https://github.com/NYTimes/ios-360-videos) - NYT360Video plays 360-degree video streamed from an AVPlayer on iOS.
803 |
804 | #### 视频处理@
805 |
806 | * [BeautifyFaceDemo](https://github.com/Guikunzhi/BeautifyFaceDemo) - 一个基于 GPUImage 的实时直播磨皮滤镜的开源实现,主要功能脸部去斑磨皮.
807 | * [simplest_ffmpeg_mobile](https://github.com/leixiaohua1020/simplest_ffmpeg_mobile) ffmpeg examples in Android / IOS / WinPhone.
808 |
809 | #### 视频录制@
810 |
811 | * [SCRecorder](https://github.com/rFlex/SCRecorder) - 酷似 Instagram/Vine 的音频/视频摄像记录器,以 Objective-C 为基础的过滤器框架。 你可以做很多如下的操作:记录多个视频录像片段。删除任何你不想要的记录段。可以使用任何视频播放器播放片段。保存的记录可以在序列化的 NSDictionary 中使用。(在 NSUserDefaults 的中操作)添加使用 Core Image 的视频滤波器。可自由选择你需要的 parameters 合并和导出视频.
812 | * [LLSimpleCamera](https://github.com/omergul123/LLSimpleCamera) - 视频录制 A simple, customizable camera control - video recorder for iOS.
813 | * [SlowMotionVideoRecorder](https://github.com/shu223/SlowMotionVideoRecorder) - 120 fps SLO-MO video recorder using AVFoundation. Including convenient wrapper class. Available on the iPhone5s.
814 | * [PBJVision](https://github.com/piemonte/PBJVision) - iOS媒体捕获,点击录制视频,显示运动和照片.
815 | * [ALCameraViewController](https://github.com/AlexLittlejohn/ALCameraViewController) - ALCameraViewController 摄像头视图控制器(含可定制照片选择器,图片简单裁切功能)及演示.
816 | * [VideoBeautify](https://github.com/xujingzhou/VideoBeautify) - 功能酷似美拍,秒拍等应用的源码:对视频进行各种美化处理,采用主题形式进行分类,内含各种滤镜,动画特效和音效等.
817 | * [IPDFCameraViewController](https://github.com/mmackh/IPDFCameraViewController) - 支持相机定焦拍摄、滤镜、闪光、实时边框检测以及透视矫正功能,并有简单易用的API.
818 |
819 | #### 视频剪切@
820 |
821 | * [ICGVideoTrimmer](https://github.com/itsmeichigo/ICGVideoTrimmer) - ICGVideoTrimmer提供提供视频剪切的视图(类似系统相册中浏览视频时顶部那个条状视图),左右两个边界选择器还能够自定义.
822 | * [VideoEditing](https://github.com/ShelinShelin/VideoEditing) - Video processing of the video capture and add background music.
823 |
824 | #### 弹幕@
825 |
826 | * [BarrageRenderer](https://github.com/unash/BarrageRenderer) - 一个 iOS 上的弹幕渲染库.
827 | * [LiveSendGift](https://github.com/Jonhory/LiveSendGift) - 直播发送弹幕效果.
828 | * [HJDanmakuDemo](https://github.com/panghaijiao/HJDanmakuDemo) - iOS端视频弹幕.
829 |
830 | #### 直播@
831 |
832 | * [LFLiveKit](https://github.com/LaiFengiOS/LFLiveKit) - 开源遵循RTMP协议的直播SDK.
833 | * [MiaowShow](https://github.com/SunLiner/MiaowShow) - iOS视频直播项目 http://www.jianshu.com/users/9723687edfb5.
834 | * [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).
835 | * [PLPlayerKit](https://github.com/pili-engineering/PLPlayerKit) - PLPlayerKit 是 Pili 直播 SDK 的 iOS 播放器。支持所有直播常用的格式,如:RTMP、HLS、FLV。拥有优秀的功能和特性,如:首屏秒开、追帧优化、丰富的数据和状态回调、硬解软解支持。而且可以根据自己的业务进行高度定制化开发.
836 | * [PLMediaStreamingKit](https://github.com/pili-engineering/PLMediaStreamingKit) - PLMediaStreamingKit 是 Pili 直播 SDK 的 iOS 推流端,支持 RTMP 推流,h.264 和 AAC 编码,硬编、软编支持。具有丰富的数据和状态回调,方便用户根据自己的业务定制化开发。具有直播场景下的重要功能,如:美颜、背景音乐、水印等功能.
837 | * [520Linkee](https://github.com/GrayJIAXU/520Linkee) - 本项目实现了作为一个直播App的基本功能,比如本地视频流采集、播放、美颜、礼物、点赞出心等.
838 | * [LMLiveStreaming](https://github.com/chenliming777/LMLiveStreaming) - iOS直播,支持H246/AAC,支持GPUImage美化,支持rtmp和flv,较慢的网络优化.
839 | * [直播技术的总结](https://github.com/tiantianlan/LiveExplanation)
840 | * [Tencent-NOW](https://github.com/ChinaArJun/Tencent-NOW) - iOS视频直播:高仿 腾讯旗下 < NOW > 直播 类似 映客 斗鱼 直播类型 喜欢的记点star谢谢 IOS Live video.
841 |
842 | #### 图像@
843 |
844 | * [SVGKit](https://github.com/SVGKit/SVGKit) - SVGKit是一个非常强大的,可以快速渲染SVG文件的框架。你可以直接把SVG文件加载至app中,并且SVG中的每个图形会变成一个CAShapeLayer,可以方便地进行缩放和动画你的图形。如果你想渲染app中的矢量图形,SVGKit是个不错的解决办法.
845 |
846 | #### 拍照@
847 |
848 | * [FastttCamera](https://github.com/IFTTT/FastttCamera) - FastttCamera 快速照相.
849 | * [DBCamera](https://github.com/danielebogo/DBCamera) - DBCamera is a simple custom camera with AVFoundation.
850 | * [ZPCamera](https://github.com/hawk0620/ZPCamera) - An OpenSource Camera App.
851 | * [HeartBeatsPlugin](https://github.com/YvanLiu/HeartBeatsPlugin) - 手机摄像头测心率 带心率折线图和返回瞬时心率.
852 | * [MARFaceBeauty](https://github.com/Maru-zhang/MARFaceBeauty) - 一款类似于FaceU的美颜相机,支持大部分基础功能:美颜,对焦,前后摄像头转换,过场动画...
853 |
854 | #### 图像处理@
855 |
856 | * [GPUImage](https://github.com/BradLarson/GPUImage) - 处理图片效果.
857 | * [LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES) - OpenGL ES的各种尝试.
858 | * [GPUImage详解](http://www.jianshu.com/nb/4268718)
859 | * [OpenGLES详解](http://www.jianshu.com/p/64d9c58d8344) - 一个相对完整的OpenGLES的学习博客,包含源码.
860 | * [OpenGLES系列教程](http://www.jianshu.com/nb/2135411)
861 | * [CTPanoramaView](https://github.com/scihant/CTPanoramaView) - 显示球面、圆柱形的摄像.
862 | * [HCPhotoEdit](https://github.com/gmfxch/HCPhotoEdit) - 仿Camera360 SDK,利用GPUImage框架实现基本的图片处理功能.
863 | * [YYImage](https://github.com/ibireme/YYImage) - 功能强大的 iOS 图像框架,支持大部分动画图像、静态图像的播放/编码/解码.
864 | * [TOCropViewController](https://github.com/TimOliver/TOCropViewController) - 图片裁剪.
865 | * [BKAsciiImage](https://github.com/bkoc/BKAsciiImage) - Convert UIImage to ASCII art.
866 | * [TinyCrayon](https://github.com/TinyCrayon/TinyCrayon-iOS-SDK) - 一个智能、易用的图片裁剪、Image markingSDK.
867 | * [GPUImage Demo](https://github.com/loyinglin/GPUImage) - 源码级别对GPUImage进行剖析以及尝试.
868 | * [YBPasterImage](https://github.com/wangyingbo/YBPasterImage) - 给图片添加滤镜、贴纸和标签功能,支持14种滤镜效果,17种标签样式.
869 | * [hotoimagefilter](https://www.kancloud.cn/trent/hotoimagefilter/102786) - 专业介绍图像处理中各种滤镜的算法实现,C#版本.
870 | * [DynamicClipImage](https://github.com/Yasic/DynamicClipImage) - iOS实现动态区域裁剪图片.
871 |
872 | #### 图像浏览@
873 |
874 | * [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/).
875 | * [TZImagePickerController](https://github.com/banchichen/TZImagePickerController) - 很赞 一个支持多选、选原图和视频的图片选择器,同时有预览功能,适配了iOS6789系统。[教程](http://www.cocoachina.com/ios/20160112/14942.html).
876 | * [RMPZoomTransitionAnimator](https://github.com/recruit-mp/RMPZoomTransitionAnimator) - 一个放大缩小的动效开源库,可以实现图片的放大缩小效果.
877 | * [ZLPhotoBrowser](https://github.com/longitachi/ZLPhotoBrowser) - 方便易用的相册多选框架,支持预览/相册内拍照、预览快速多选相片,3DTouch预览照片,单选gif、Live Photo及video;相册混合选择;原图功能;支持多语言国际化(中文简/繁,英语,日语);在线下载iCloud端图片;自定义最大选择量及最大预览量;自定义照片升序降序排列;自定义照片显示圆角弧度.
878 | * [CLImageEditor](https://github.com/yackle/CLImageEditor) - 超强的图片编辑库,快速帮你实现旋转,防缩,滤镜等等一系列麻烦的事情.
879 | * [PYPhotoBrowser](https://github.com/iphone5solo/PYPhotoBrowser) - 图片浏览器。主要用于社交app,用于呈现一组图片。流水布局 、 线性布局;单击 、双击 、捏合 、旋转、拖拽、侧滑.
880 | * [EBPhotoPages](https://github.com/EddyBorja/EBPhotoPages) - 类似facebook的相册浏览库.
881 | * [RSKImageCropper](https://github.com/ruslanskorb/RSKImageCropper) - 适用于iOS的图片裁剪器,类似Contacts app,可上下左右移动图片选取最合适的区域.
882 | * [WZRecyclePhotoStackView](http://code.cocoachina.com/detail/232156) - 删除照片交互--WZRecyclePhotoStackView,就是模拟生活中是删除或保留犹豫不决的情形而产生的。 在上滑,下滑的部分,借鉴了[TinderSimpleSwipeCards](https://github.com/cwRichardKim/TinderSimpleSwipeCards).
883 | * [react-native-image-crop-picker](https://github.com/ivpusic/react-native-image-crop-picker) - iOS/Android image picker with support for camera, configurable compression, multiple images and cropping.
884 | * [PhotoTweaks](https://github.com/itouch2/PhotoTweaks) - 这个库挺赞的,正好是对图像操作的.
885 | * [MHVideoPhotoGallery](https://github.com/mariohahn/MHVideoPhotoGallery) - A Photo and Video Gallery.
886 | * [CorePhotoBroswerVC](https://github.com/CharlinFeng/CorePhotoBroswerVC) - 快速集成高性能图片浏览器,支持本地及网络相册.
887 | * [KYElegantPhotoGallery](https://github.com/KittenYang/KYElegantPhotoGallery) - 一个优雅的图片浏览库.
888 | * [SDPhotoBrowser](https://github.com/gsdios/SDPhotoBrowser) - 仿新浪动感图片浏览器,非常简单易用的图片浏览器,模仿微博图片浏览器动感效果,综合了图片展示和存储等多项功能.
889 | * [HZPhotoBrowser](https://github.com/chennyhuang/HZPhotoBrowser) - 一个类似于新浪微博图片浏览器的框架(支持显示和隐藏动画;支持双击缩放,手势放大缩小;支持图片存储;支持网络加载gif图片,长图滚动浏览;支持横竖屏显示).
890 | * [ZZPhotoKit](https://github.com/ACEYL/ZZPhotoKit) - 基于Photos和AVFoundation框架开源,相册多选与相机连拍.
891 | * [MarkingMenu](https://github.com/FlexMonkey/MarkingMenu) - 基于手势、类似 Autodesk Maya 风格标记菜单及图片渲染.
892 | * [SXPhotoShow](https://github.com/dsxNiubility/SXPhotoShow) - UICollectionViewFlowLayout流水布局 是当下collectionView中常用且普通的布局方式。本代码也写了三种好看的布局,其中LineLayout和流水布局有很大的相同点就直接继承UICollectionViewFlowLayout,然后StackLayout,CircleLayout这两种都是直接继承自最原始的UICollectionViewLayout 布局方案.
893 | * [PictureWatermark](https://github.com/cgwangding/PictureWatermark) - 主要实现了给图片加文字以及图片水印的功能,已封装成了UIImage的类别,方便使用.
894 | * [PhotoBrowser](https://github.com/CharlinFeng/PhotoBrowser) - 照片浏览器.
895 | * [StitchingImage](https://github.com/zhengjinghua/StitchingImage) - 仿微信群组封面拼接控件, 直接拖进项目就可使用,[教程](http://gold.xitu.io/entry/56395f5360b20b143a9178f6).
896 | * [SDECollectionViewAlbumTransition](https://github.com/seedante/SDECollectionViewAlbumTransition) - 用自定义的 push 和 pop 实现了有趣的 iOS 相册翻开动画效果.
897 | * [DNImagePicker](https://github.com/AwesomeDennis/DNImagePicker) - 类似wechat的图片选择.
898 | * [CocoaPicker](https://github.com/lioonline/CocoaPicker) - 仿QQ图片选择器(OC).
899 | * [JFImagePickerController](https://github.com/johnil/JFImagePickerController) - vvebo作者:多选照片、预览已选照片、针对超大图片优化.
900 | * [VIPhotoView](https://github.com/vitoziv/VIPhotoView) - 图片浏览,用于展示图片的工具类,因为是个 View,所以你可以放在任何地方显示。支持旋转,双击指定位置放大等.
901 | * [YUCIHighPassSkinSmoothing](https://github.com/YuAo/YUCIHighPassSkinSmoothing) - 磨皮滤镜.
902 | * [react-native-image-crop-picker](https://github.com/ivpusic/react-native-image-crop-picker) - iOS/Android image picker with support for camera, configurable compression, multiple images and cropping.
903 | * [YUGPUImageHighPassSkinSmoothing](https://github.com/YuAo/YUGPUImageHighPassSkinSmoothing) - 一个基于 GPUImage 的磨皮滤镜.
904 | * [XHImageViewer](https://github.com/JackTeam/XHImageViewer) - XHImageViewer is images viewer, zoom image.
905 | * [card.io-iOS-SDK](https://github.com/AllLuckly/card.io-iOS-SDK) - OCR光学识别储蓄卡以及信用卡,[oc与swift使用教程](http://www.jianshu.com/p/82f73c23a76a).
906 | * [自定义宽高比的相册框 拍照](http://code.cocoachina.com/detail/320603/) - 取出照片时 弹出自定义view。在这个自定义view上创建一个需要的相框大小的view层 把取出的图片赋值给UIImageView按缩放添加到这个层上。对uiimageView添加捏合、移动 手势。添加按钮 选取,最后根据位移和缩放比例 裁剪image.
907 | * [LGPhotoBrowser](https://github.com/gang544043963/LGPhotoBrowser) - LGPhotoBrowser:相册选择/浏览器/照相机(仿微信),包含三个模块:照片浏览器,相册选择器,照相机.
908 | * [BeautyHour](https://github.com/xujingzhou/BeautyHour) - 完整应用,功能与“美图秀秀”雷同.
909 | * [WSImagePicker](https://github.com/wsjtwzs/WSImagePicker) - 高性能多选图片库,类似于微信发布朋友圈中 ‘获取相册及拍照’模块.
910 | * [JTSImageViewController](https://github.com/jaredsinclair/JTSImageViewController) - 图片浏览.
911 | * [SGPhotoBrowser](https://github.com/Soulghost/SGPhotoBrowser) - 图片浏览.
912 | * [HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs) - AR相册 Photo Album For AR.
913 |
914 | #### 图像缓存@
915 |
916 | * [SDWebImage](https://github.com/rs/SDWebImage) - 非常优秀的图像缓存库.
917 | * [UIActivityIndicator-for-SDWebImage](https://github.com/JJSaccolo/UIActivityIndicator-for-SDWebImage) - 为SDWebImage显示加载效果.
918 | * [FastImageCache](https://github.com/path/FastImageCache) - 👍 非常棒的一个 一个高效显示图片的库,支持图片缓存、平滑滚动和图片检索.
919 | * [DFImageManager](https://github.com/kean/DFImageManager) - 图片加载、处理、缓存、预加载.
920 | * [LKImageKit](https://github.com/Tencent/LKImageKit) - Tencent:A high-performance image framework, including a series of capabilities such as image views, image downloader, memory caches, disk caches, image decoders and image processors.
921 | * [Twitter Image Pipline](https://github.com/twitter/ios-twitter-image-pipeline) - Twitter出品的一个高性能的图片下载、缓存库.
922 | * [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - Alamofire的一个图片组件,支持图片序列化,UIImage扩展(压缩、缩放、圆角、核心图像),单个、多个的图片过滤、自动清除内存,队列图片下载、URL鉴定、图片占位和异步远程图片下载、UIImageView过滤和转换等. An image component library for Alamofire.
923 | * [AsyncImageView](https://github.com/nicklockwood/AsyncImageView) - 一个易用的UIImageView扩展,用于异步加载、显示图片,对UI显示无影响。
924 | * [PINRemoteImage](https://github.com/pinterest/PINRemoteImage) - 一个线程安全、高效的远程图片管理库,支持图片下载、缓存、处理,也支持GIF.
925 | * [FastImageCache](https://github.com/path/FastImageCache) - 非常赞 FastImageCache 网络图片获取及缓存处理,[iOS图片加载速度极限优化—FastImageCache解析](http://blog.cnbang.net/tech/2578/).
926 | * [YYWebImage](https://github.com/ibireme/YYWebImage) - 异步图片加载库 (supports WebP, APNG, GIF).
927 | * [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/)。
928 | * [YYWebImage](https://github.com/ibireme/YYWebImage/) - 一个图片加载库 YYWebImage,支持 APNG、WebP、GIF 播放,支持渐进式图片加载,更高性能的缓存,更多图像处理方法,可以替代 SDWebImage 等开源库,[相关文章](http://blog.ibireme.com/2015/11/02/mobile_image_benchmark/).
929 | * [JDSwiftAvatarProgress](https://github.com/JellyDevelopment/JDSwiftAvatarProgress) - 容易定制的异步图片加载进度条.
930 | * [ImageButter](https://github.com/dollarshaveclub/ImageButter) - 平滑的处理网络图片,支持缓存,异步编码,加载进度View,GIFs动画等.
931 |
932 | #### 滤镜@
933 |
934 | * [XBImageFilters](https://github.com/xissburg/XBImageFilters) - 图像滤镜.
935 | * [CoreImageShop](https://github.com/rFlex/CoreImageShop) - CoreImageShop图片滤镜处理-- Mac app that let you create a complete Core Image Filter usable on iOS using SCRecorder。
936 |
937 | #### 图像识别@
938 |
939 | * [libfacedetection](https://github.com/ShiqiYu/libfacedetection) - C++ 人脸识别 包含正面和多视角人脸检测两个算法.优点:速度快(OpenCV haar+adaboost的2-3倍), 准确度高 (FDDB非公开类评测排名第二),能估计人脸角度.
940 | * [YLFaceuDemo](https://github.com/Guikunzhi/YLFaceuDemo) - 在直播应用中添加Faceu贴纸效果。Faceu贴纸效果其实就是在人脸上贴一些图片,同时这些图片是跟随着人脸的位置改变的。[说明](http://www.jianshu.com/p/ba1f79f8f6fa).
941 | * [IDCardRecognition](https://github.com/zhongfenglee/IDCardRecognition) - 中国大陆第二代身份证识别,自动读出身份证上的信息(姓名、性别、民族、住址、身份证号码)并截取身份证照片 Edit
942 | * [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/.
943 | * [SSIDCard](https://github.com/sansansisi/SSIDCard) - iOS中国二代身份证号扫描识别.
944 |
945 | #### 图像圆角@
946 |
947 | * [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/
948 |
949 | #### 截屏@
950 |
951 | * [PPSnapshotKit](https://github.com/VernonVan/PPSnapshotKit) - 在包括 UIWebView 和 WKWebView 的网页中进行长截图.
952 |
953 | #### AutoLayout@
954 |
955 | * [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.
956 | * [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).
957 | * [ClassyLiveLayout](https://github.com/olegam/ClassyLiveLayout) - ClassyLiveLayout通过结合Classy stylesheets与Masonry一起使用,能够在运行的模拟器中微调Auto Layout约束实时显示效果的工具,[Masonry、Classy、ClassyLiveLayout介绍](http://www.jianshu.com/p/2ed5f7444900).
958 | * [PureLayout](https://github.com/PureLayout/PureLayout) - PureLayout 是 iOS & OS X Auto Layout 的终极 API——非常简单,又非常强大。PureLayout 通过一个全面的Auto Layout API 扩展了 UIView/NSView, NSArray 和 NSLayoutConstraint,仿照苹果自身的框架.
959 | * [UIView-AutoLayout](https://github.com/smileyborg/UIView-AutoLayout) -Deprecated in favor of PureLayout, which includes OS X support:https://github.com/smileyborg/PureLayout.
960 | * [UIView-FDCollapsibleConstraints](https://github.com/forkingdog/UIView-FDCollapsibleConstraints) - 一个AutoLayout辅助工具,最优雅的方式解决自动布局中子View的动态显示和隐藏的问题。第二个Demo模拟了一个经典的FlowLayout,任意一个元素隐藏时,底下的元素需要自动“顶”上来,配合这个扩展,你可以在IB里连一连,选一选,不用一行代码就能搞定.
961 | * [Autolayout_Demo](https://github.com/luodezhao/Autolayout_Demo) - 在项目中用自动布局实现的类似抽屉效果.
962 | * [当view隐藏的时候也隐藏其autolayout的NSLayoutAttribute](http://code.cocoachina.com/detail/320405/) - 当view隐藏的时候也隐藏其autolayout的NSLayoutAttribute,从而不用大量的代码工作.
963 | * [SDAutoLayout](https://github.com/gsdios/SDAutoLayout) - AutoLayout 一行代码搞定自动布局!支持Cell、Label和Tableview高度自适应,致力于做最简单易用的AutoLayout库.
964 | * [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…
965 | * [WHC_AutoLayoutKit](https://github.com/netyouli/WHC_AutoLayoutKit) - Had better use the auto layout of open source framework,致力打造使用最简单功能最强大的自动布局开源库.
966 | * [NerdyUI](https://github.com/nerdycat/NerdyUI) - 好用的快速布局 UI 库,适用于 iOS 8 及以上版本.
967 | * [FlexLib](https://github.com/zhenglibao/FlexLib) - FlexLib is a framework for creating native iOS applications using a human-readable markup language, similar to Android and .NET development way. It's based on flexbox model, easy & powerful. Trash xib & storyboard, autolayout & masonry now. :).
968 |
969 | #### 数据结构/算法@
970 |
971 | * [LearningMasteringAlgorithms-C](https://github.com/yourtion/LearningMasteringAlgorithms-C) -《算法精解:C语言描述》源码及Xcode工程、Linux工程.
972 | * [Changeset](https://github.com/osteslag/Changeset) - Minimal edits from one collection to another :large_orange_diamond:
973 | * [Brick](https://github.com/hyperoslo/Brick) - :droplet: A generic view model for both basic and complex scenarios :large_orange_diamond:
974 | * [Algorithm](https://github.com/CosmicMind/Algorithm) - Algorithm is a collection of data structures that are empowered by a probability toolset. :large_orange_diamond:
975 | * [AnyObjectConvertible](https://github.com/tarunon/AnyObjectConvertible) - Convert your own struct/enum to AnyObject easily. :large_orange_diamond:
976 | * [EKAlgorithms](https://github.com/EvgenyKarkan/EKAlgorithms) - Some well known CS algorithms & data structures in Objective-C.
977 | * [Monaka](https://github.com/naru-jpn/Monaka) - Convert custom struct and fundamental values to NSData.
978 | * [Pencil](https://github.com/naru-jpn/pencil) - Write values to file and read it more easily. :large_orange_diamond:
979 | * [AlgorithmOC](https://github.com/wang542413041/AlgorithmOC) - OC算法与数据结构实现.
980 |
981 | #### 机器学习@
982 |
983 | * [ShowAndTell](https://github.com/LitleCarl/ShowAndTell) - A Show And Tell implementation for iOS 11.0 based on CoreML.
984 |
985 | #### 上架@
986 |
987 | * [Solve-App-Store-Review-Problemm](https://github.com/wg689/Solve-App-Store-Review-Problem) - (ipv6,ipv6被拒绝,后台定位等审核问题的终极解决方案汇总).
988 |
989 | #### iOS11@
990 |
991 | * [iOS11](https://github.com/2877025939/iOS11) - 这里总结了大家iOS 11,iPhone X 适配问题.如有问题,欢迎大家讨论.
992 |
993 | #### 应用内支付@
994 |
995 | * [IAPDemo](https://github.com/WildDylan/IAPDemo) - 应用内支付IAP全部流程, [教程](http://www.jianshu.com/p/e9ae4cece800).
996 | * [IAPHelper](https://github.com/saturngod/IAPHelper) - 应用内付费给我们提供了很多样本代码,而这个库丢掉了那些代码,将金钱交易相关的大多通用任务做了简单的封装.
997 |
998 | #### Xcode8插件@
999 |
1000 | * [Import](https://github.com/markohlebar/Import) 快捷导入头文件-Xcode extension for adding imports from anywhere in the code.
1001 | * [XcodeSourceEditorExtension-Alignment](https://github.com/tid-kijyun/XcodeSourceEditorExtension-Alignment) 对齐属性声明 This Xcode source editor extension align your assignment statement.
1002 | * [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
1003 | * [HYBUnicodeReadable](https://github.com/CoderJackyHuang/HYBUnicodeReadable) -解决打印日志对于Unicode编码不能正常显示中文的问题,只需要将文件导入工程,不需要引用,就能达到打印日志显示Unicode编码中文数据
1004 | * [JSONExport](https://github.com/Ahmed-Ali/JSONExport) - 一个json转模型的mac软件,ESJsonFormat-Xcode的替代产品,非常不错👍 .
1005 | * [WHC_DataModelFactory](https://github.com/netyouli/WHC_DataModelFactory) Mac上iOS开发辅助工具,快速把json/xml数据转换生成对应模型类属性,省去麻烦手动创建,提高开发效率。
1006 |
1007 | #### UI@
1008 |
1009 | #### 综合UI@
1010 |
1011 | * [Texture](https://github.com/TextureGroup/Texture) - Texture——保持最复杂的用户界面的流畅和响应.
1012 | * [Material-Controls-For-iOS](https://github.com/fpt-software/Material-Controls-For-iOS) - Many Google Material Design Controls for iOS native application.
1013 | * [Material-Controls-For-iOS](https://github.com/fpt-software/Material-Controls-For-iOS) - 大神模仿谷歌做的各种各样的iOS原生特效控件,非常全面.
1014 | * [Form](https://github.com/hyperoslo/Form) - Form 是一个方便开发者创建表单填写工作的 UI 库.
1015 | * [JXCategoryView](https://github.com/pujiaxin33/JXCategoryView) - A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图).
1016 | * [material-components-ios](https://github.com/material-components/material-components-ios) - 基于 Material Design 的组件库,包含iOS、Android、Web 三个平台的组件库和调用方法.
1017 | * [fluid-slider](https://github.com/Ramotion/fluid-slider) - A slider widget with a popup bubble displaying the precise value selected.
1018 | * [YXYDashLayer](https://github.com/yulingtianxia/YXYDashLayer) - Colorful Rounded Rect Dash Border.
1019 |
1020 | #### 列表@
1021 |
1022 | * [Eureka](https://github.com/xmartlabs/Eureka) - Eureka可以帮你简单优雅的实现动态table-view表单。它由rows,sections和forms组成。如果你的app包含大量表单,Eureka可以真正帮你节省时间.
1023 | * [Parade](https://github.com/HelloElephant/Parade) - Parallax Scroll-Jacking Effects Engine for iOS / tvOS.
1024 |
1025 | #### TableView@
1026 |
1027 | * [SWTableViewCell](https://github.com/CEWendel/SWTableViewCell) - 非常赞 UITableViewCell 的子类, 实现了左右滑动显示信息视图并调出按钮.
1028 | * [RETableViewManager](https://github.com/romaonthego/RETableViewManager) - 赞 一个非常强大的使用数据驱动的 UITableView 内容管理。可以十分方便地生成各种样式、各种功能的TableView。只要开发者能想到的列表效果或者功能,都可以利用这份代码迅速编写出来。比如,之前要实现一个填写各种资料的列表,可能需要很多代码,现在只需要几行代码就可以实现.
1029 | * [DZNEmptyDataSet](https://github.com/dzenbot/DZNEmptyDataSet) - 非常赞 DZNEmptyDataSet算是一个很标准的iOS内建方式,适合用来处理空的tableview和collection view。会自动将collection view处理完善,并将用户消息以合适美观的方式显示出来。每个iOS项目都可以自动处理.
1030 | * [folding-cell](https://github.com/Ramotion/folding-cell) - 很赞 一个比较酷炫的cell折叠动画效果.
1031 | * [VVeboTableViewDemo](https://github.com/johnil/VVeboTableViewDemo) - 此项目由VVebo剥离,希望你能通过这个demo看到我是如何进行TableView流畅度优化的.
1032 | * [SWTableViewCell](https://github.com/onevcat/SWTableViewCell) - 国内开源作者,带很多手势的表单元格.
1033 | * [MGSwipeTableCell](https://github.com/MortimerGoro/MGSwipeTableCell) - 另一个常见于很多应用中的UI组件,苹果应该考虑在标准的iOS SDK中加入一些类似的内容。Swipeable表格cell是这个pod的最佳描述,也是最好的。非常👍👍👍 .
1034 | * [MCSwipeTableViewCell](https://github.com/alikaragoz/MCSwipeTableViewCell) - 带很多手势的表单元格.
1035 | * [TMQuiltView](https://github.com/1000Memories/TMQuiltView) - 瀑布流.
1036 | * [XRWaterfallLayout](https://github.com/codingZero/XRWaterfallLayout) - 超简单的瀑布流实现,[实现说明](http://www.cocoachina.com/ios/20160407/15872.html).
1037 | * [WaterfallFlowDemo](https://github.com/lengmolehongyan/WaterfallFlowDemo) - 一个简单的UICollectionView瀑布流布局演示demo.
1038 | * [XLForm](https://github.com/xmartlabs/XLForm) - 很多表格类的table,写法更高冷一点,推荐使用.
1039 | * [AMWaveTransition](https://github.com/andreamazz/AMWaveTransition) - 很炫的带有表格的视图控制器切换效果,点击每个栏目会有限带有波浪效果的信息展示,类似于Facebook Paper.
1040 | * [UIScrollSlidingPages](https://github.com/TomThorpe/UIScrollSlidingPages) - 允许添加多视图控件,并且可以横向滚动。有点类似于Groupon app.
1041 | * [HorizontalScrollCell](https://github.com/mcelayir/HorizontalScrollCell) - HorizontalScrollCell是一款使用方便的水平方向可滚动的单元格,适用于UICollectionView中实现水片方向滚动视图.
1042 | * [SYJiugonggeTableView](https://github.com/shiyuan17/syTableView) - tableView封装的九宫格.
1043 | * [UUChatTableView](https://github.com/ZhipingYang/UUChatTableView) - UUChatTableView 气泡聊天界面,支持文本、图片以及音频的气泡聊天界面。[源码推荐说明](http://www.cocoachina.com/ios/20150205/11116.html).
1044 | * [Atlas-iOS](https://github.com/layerhq/Atlas-iOS) - 快速在iOS里集成聊天功能,类似开源版本的环信。Layer家开源了一套聊天app界面的解决方案.看起来很赞,很多蛮复杂的东西直接都帮封好了。不得不说现在做app开发真是很简单,大部分时间搭积木就可以了。[官方网站](https://atlas.layer.com/).
1045 | * [DLSlideView](https://github.com/agdsdl/DLSlideView) - DLSlideView对常见的顶部Tab页点击、滑动分页做了封装。它使用基于ViewController的container特性(而不是scrollview)来管理各个子页面,以支持无限分页,[源码推荐说明](http://www.cocoachina.com/ios/20150205/11116.html).
1046 | * [VOVCManager](https://github.com/pozi119/VOVCManager) - 页面管理器:1.跳转指定页面,只需要知道viewController的Class名,如果有storyboard,则需要指定storyboard名;2.无需添加基类;3.支持URLScheme跳转指定页面。
1047 | * [MBXPageViewController](https://github.com/Moblox/MBXPageViewController) -
1048 |
--------------------------------------------------------------------------------