当前位置:   article > 正文

iOS常用框架总结

iOS常用框架总结
1. 图像:
  1. 图片浏览控件MWPhotoBrowser

    实现了一个照片浏览器类似 iOS 自带的相册应用,可显示来自手机的图片或者是网络图片,可自动从网络下载图片并进行缓存。可对图片进行缩放等操作。
    下载:https://github.com/mwaterfall/MWPhotoBrowser

    目前比较活跃的社区仍旧是Github,除此以外也有一些不错的库散落在Google Code、SourceForge等地方。由于Github社区太过主流,这里主要介绍一下Github里面流行的iOS库。

  2. 首先整理了一份Github上排名靠前的iOS库(大概600个repos)

    除了逛一下每日/每月流行之外,也可以到这里来看一下整个iOS Repos的排名。

2. 下面是一些比较流行的第三方库:

HTTP

  1. 相比较之下,AFNetworking是目前最优秀的一个了:轻量、易用、使用者多、开发者有在积极维护。
  2. 在AFN出现之前,这个角色是由ASIHTTPRequest扮演的,只是到现在年久失修了。关于AFN和ASI的对比,
  3. 这里有一篇不错的文章http://www.infoq.com/cn/articles/afn_vs_asi。除此之外,MKNetworkKit和RestKit也有一定的使用者。

Socket

  1. CocoaAsyncSocket无疑是目前封装得最完善的Socket库了:支持异步TCP/UDP,支持GCD,Objective-C接口封装。
  2. 目前没有发现可以与之相比的同类产品。。

JSON

  1. JSONKit算是第三方中最优秀的一个了:性能很高,文件少。在JSONKit之前,SBJson非常非常流行,但是SBJson性能够差,
  2. 只是由于历史原因仍然存在在某些工程里面。如果工程只需要支持iOS5以上的系统,那就可以放弃那些第三方Json库了,
  3. 直接用系统提供的NSJSONSerialization,性能比第三方的好,又是官方API。。

XMPP

  1. 现在做个实时聊天,XMPP协议算是很成熟的方案了。XMPPFramework一个很不错的选择,
  2. 可以直接和OpenFire服务器打交道。项目不大人手不多的话,可以看看这个。

基础工具类

SSToolkit算是一个不错的工具包,提供各种比如编码、加密、字符串处理等等东西,还提供了一些不错的自定义控件,并且文档非常齐全。

框架

  1. 过去有很多人再用three20,这个东西太大太重,文档又少,到头来连Facebook都停止维护了。作为替代品nimbus现在流行了开来,关键在于它文档齐全。
  2. 国内有个MVC框架叫BeeFramework,号称是顶级框架并且功能超过nimbus,有兴趣的可以看一下。 ReactiveCocoa把响应式编程这种上流的东西带了过来,
  3. 值得试一试。。

数据存储

还是挺多人(比如我)喜欢直接跟SQLite打交道的,这方面fmdb封装的很不错。如果用CoreData来做存储的,可以用一下MagicalRecord。

图像处理

GPUImage无疑是这方面的集大成者了。用OpenGL ES2.0来实时处理图片和视频流,性能和功能都是顶尖的。

开发和调试工具

  1. PonyDebugger看上去是一个不错的调试工具,可以在电脑浏览器上远程调试iOS程序、查看试图层次、网络等等。CocoaLumberjack是个Log工具,
  2. 号称是可以提供企业级Log,使用者也挺多。
3.为了了解一下目前第三方库的普及程度,下面列举一些知名App对第三方库的依赖。
  • 网易新闻
  1. AppleReachability
  2. ASIHTTPRequest
  3. EGOTableViewPullRefresh
  4. GTMNSString+HTML
  5. MGTemplateEngine
  6. MPOAuth
  7. RegexKitLite
  8. SDWebImage
  9. SSZipArchive
  10. wax
  11. Garageband
  12. MurmurHash
  13. libpng
  14. zlib
  15. SBJson (json-framework)
  16. iWork三套件
  17. MOKit
  18. Boost C++ Library
  19. protobuf
  20. OpenGL Mathematics
  21. SQLite
  22. cephes math library
  23. Pinterest
  24. AFNetworking
  25. AFHttpClientLogger
  26. Facebook SDK
  27. iRate
  28. MAKVONotificationCenter
  29. SDWebImage
  30. SFHFKeychainUtils
  31. SSPullToRefresh
  32. SVProgressHUD
  33. TTTAttributedLabel
  34. TTTLocalizedPluralString
  35. UIAlertView-Blocks
  • 多看阅读
  1. fmdb
  2. ASIHTTPRequest
  3. FreeType
  4. JSONKit
  5. Objective-Zip
  6. Skia (Google)
  7. MBProgressHUD
  • 淘宝
  1. MAZeroingWeakRef
  2. MBProgressHUD
  3. ABContactHelper
  4. ASIHTTPRequest
  5. CocoaLumberjack
  6. EGOTableViewPullRefresh
  7. fmdb
  8. GTMBase64
  9. JSONKit
  10. SBJson (json-framework)
  11. RTLabel
  12. SDWebImage
  13. SVPullToRefresh
  14. three20
  15. ziparchive
  • 微信
  1. cocos2d
  2. EGOTableViewPullRefresh
  3. Facebook iOS SDK
  4. JSONKit
  5. SBJson
  6. ziparchive
  • QQ
  1. ASIHTTPRequest
  2. FMDB
  3. CocoaAsyncSocket
  4. JSONKit
  5. MBProgressHUD
  6. OpenUDID
  7. SBJson
  8. SVPullToRefresh
  • 百度地图
  1. AFNetworking
  2. GTMBase64
  3. JSONKit
  4. MBProgressHUD
  5. RNCachingURLProtocol
  6. SDWebImage
  • 微博
  1. ABContactHelper
  2. AFNetworking
  3. ASIHTTPRequest
  4. DACircularProgressView
  5. DDProgressView
  6. DTFoundation
  7. fmdb
  8. JSONKit
  9. SBJson
  10. MBProgressHUD
  11. MTStatusBarOverlay
  12. OpenUDID
  13. SFHFKeychainUtils
  • 人人
  1. cocoaasyncsocket
  2. ZipArchive
  3. MBProgressHUD
  4. JSONKit
  5. GTMBase64
  6. MKNetworkKit
  7. HPGrowingTextView
  8. zxing

可以看到,这些大型的App的依赖都很混乱,所以稍微解释一下。这些大公司都有一个iOS团队来协同开发,团队成员的水平也参差不齐。有时由于历史原因,例如某个App的某个组件依赖了ASIHttpRequest,但之后的新人改用了AFNetworking,就造成上面这种比较混乱的库依赖关系。这就造成难以维护、代码冗余等问题了。所以,引入一个第三方库一定要慎重考虑,如果可能,尽量自己开发和实现相应的功能,第三方库尽量只作为参考。 小团队或者个人开发者可以不必过多考虑,开发速度优先。

4. 2014年8月7号新增
  • 系统基础库
  1. Category/Util
  2. sstoolkit 一套Category类型的库,附带很多自定义控件 功能不错~
  3. BlocksKit 将Block风格带入UIKit和Founcation
  4. cocoa-helpers 一些Cocoa的扩展 2年前的工程
  5. CoconutKit 一系列扩展和一些自定组件
  6. STUtils 一系列扩展包
  7. PSFoundation 一系列扩展 和功能增强
  8. ConciseKit 一系列宏定义 挺有意思
  9. DTFoundation 又一系列扩展。。。
  10. BBBootstrap 一些常见功能的扩展库
  11. cooliris-toolkit cooliris出品的基础工具库,从GoogleCode clone过来
  12. BaseKit 一套基础工具库
  13. NSObject-Utility-Categories 如题
  14. NSArray-Utilities 如题
  15. aqtoolkit 一些常用的东西
  16. DLIntrospection 一些NSObject的扩展
  17. NSDate-Extensions 如题日期
  18. ALActionBlocks 在UIControl上添加的Block事件
  19. jrswizzle 主要是swizzling
  20. moriarty 一些还算有用的功能
  21. QSUtilities 一些基础库 (Instagram有用到)
  22. libextobjc 一堆oc的扩展
  23. PrettyTimestamp 友好时间的扩展
  24. ios-jail-break-detector 检测是否越狱 有上线
  25. crackify 检测App是否被破解
  26. NSBundle-OBCodeSigningInfo 检查当前签名、Sandbox状态 MacOSX
  27. UIView-AnimatedProperty 为UIView添加动画效果的property,有用到swizzle
  28. Block-KVO Block风格的KVO~
  29. MTDates 一些Data的category
  30. CocoaSecurity 常见的哈希、加密解密算法
  31. sskeychain 访问keychain 支持iOS Mac
  32. ABContactHelper 访问联系人
  33. UISS 用JSON的风格设置UIKit样式
  34. Underscore.m 仿JS的underscore.js来写的,用于访问和处理数据
  35. TICoreDataSync 在不同设备间对CoreData进行同步 (iPhone iPad Mac)
  36. SoloComponents-iOS 几个轻量的组件,没什么用,2年没更新
  37. MAObjCRuntime 将运行时包装成ObjC
  38. Objective-C-Generics 通过宏定义勉强实现的范型
  39. TBMacros 一些常用的宏定义
  40. NSString-Ruby 为Ruby程序员带来的字符串相关功能
  41. ObjectiveRecord CoreData包装的活动记录 有RoR风格的API
  42. FastImageCache 滑动时快速显示图片的库,Path开发
  • 基础功能
  1. mediaextract 纯C的一些常用媒体文件的解析读取
  2. objection 一个估计是java ee写多了的人搞的。。注解依赖注入xx工厂之类的
  3. Typhoon IoC容器啊~~
  4. HTKit 一票乱七八糟的东西
  5. StringScore 模糊匹配字符串 查找某两个字符串的相似程度
  6. RegexKitLite 正则表达式库 (从SF.net mirror过来)
  7. FormatterKit 一个NSString的格式化工具
  8. TMCache 一个内存Cache
  9. EGOCache EGOImage里面的 Cache功能
  10. HJCache 一个缓存网络内容等的Cache
  11. RNCryptor 加密解密相关 貌似更上流, note:去看一下他博客
  12. ssziparchive zip压缩 zip解压~
  13. ZipKit 一个ZipKit 从bitbucket Mirror过来
  14. ZipKit 如同ZipKit 改为ARC了
  15. zipzap Zip文件处理 底层为libz
  16. MTMigration 版本升时执行一次
  17. MTControl jQuery风格touch事件绑定
  18. storage 快速、线程安全的I/O存储操作
  19. CHCSVParser CVS文件解析
  20. YLMoment 日期的解析,格式化等,支持多语言
  21. CMUnistrokeGestureRecognizer 各种奇怪的手势检测
  22. EKAlgorithms.git 常见算法的ObjC实现,包括排序、查找、数组、字符串、常用数据结构..
  • 框架/封装
  1. three20 一个曾经用得广泛的庞大的iOS开发框架 已不再维护
  2. nimbus three20替代品 又一个庞大的框架
  3. BeeFramework 一个基于MVC的框架, 比较大..
  4. OmniGroup 一套很庞大的库(OmniGroup) 支持Mac和iOS 更新迅速
  5. ReactiveCocoa 一套响应式编程的框架(Functional Reactive Programming) 支持Mac
  6. WebViewJavascriptBridge WebView和Cocoa之间的事件传递
  7. OCUDL 自定义literals 有点意思~~
  8. Kiwi 一个Behavior驱动编程框架? (BDD)?
  9. Mantle 一个Model层, 替代CoreData 可以生成Model对象~ Github官方出品..
  10. MagicalRecord CoreData的包装 简化代码
  11. fmdb SQLite的封装
  12. KZPropertyMapper 一个Model的封装,类JSON
  13. BlockInjection 为某个方法注入一个Block 类似AOP
  14. NSObject-ObjectMap JSON和XML包装到Object
  15. Ejecta 通过OpenGL OpenAL来实现 WebCanvas JS等,很庞大~
  16. FCModel 为SQL程序员包装一下CoreData
  • 功能/封装
  1. iOS-System-Services 获取各种设备信息 包括硬件、网络、内存、进程等等
  2. MKStoreKit iAP用的库
  3. CargoBay 一个包装iAP StoreKit的库
  4. RMStore 很轻量的iAP包装
  5. QuincyKit 处理crach信息的库 只有上架应用才能用 支持Mac
  6. OpenUDID 系统UDID替代方案
  7. UIDevice-with-UniqueIdentifier-for-iOS-5 另一个UUID解决方案 但iOS7不能用了
  8. uidevice-extension 一系列UIDevice的扩展 有PrivateAPI 最新的工程在cookbook-code里
  9. InAppSettingsKit 包装了设置、URLScheme、Mail、Icon等东西
  10. DTWebArchive 允许访问剪贴板中的WebArchive格式富文本
  11. routable-ios inApp的URL定义 在App内打开自定义URL (解耦)
  12. JLRoutes 复杂的URL Scheme解析和路由
  13. Emoji 访问Emoji图片的功能
  14. PDKeychainBindingsController 以类似UserDefault的方式访问Keychain
  15. CoreTextWrapper 一个CoreText库的包装
  16. Slash 对AttributeString的封装
  17. iHasApp 检测某个App是否安装,集成了常见的URL Scheme
  • 网络基础
  1. AFNetworking 很棒的HTTP网络通信库
  2. asi-http-request 一个HTTP库 同样很知名 性能好,稳定 但已不再维护
  3. MKNetworkKit 一个HTTP库 支持Mac 同样也不错
  4. STHTTPRequest 一个非常简单的http库,包装了NSURLConnection
  5. RestKit 一个HTTP库 用来与RESTful的服务进行交互
  6. AFIncrementalStore 用CoreData和AFNetworking 将HTTP数据持久化
  7. CocoaAsyncSocket TCP/UDP包装库 支持Mac 很棒
  8. Reachability 判断设备网络情况 和苹果的很像 用ARC、GCD
  9. SDReachability 判断设备网络情况 和苹果的很像,更友好?
  10. socket.IO-objc 支持HTTP 长轮询 socket.io
  11. DTBonjour Bonjour和Wifi
  12. XMPPFramework XMPP客户端的库~ 支持Mac
  13. CocoaHTTPServer 一个轻量的HTTP Server 支持Mac
  14. SocketRocket WebSocket客户端~
  15. MailCore IMAP SMTP邮件协议
  • JSON
  1. JSONKit 性能非常好 (只比Apple原生的差一点)
  2. json-framework SBJson 曾经用得很广泛的JSON 性能差
  3. TouchJSON 又一个JSON库
  4. yajl-objc 一个JSON库 可以支持流解析 支持Mac
  5. JSONModel 一个构建JSON Model的工具和库

XML/Html

  1. MWFeedParser Feed/Atom解析
  2. RSSKit RSS Atom解析
  3. ElementParser 提供Html和XML的解析
  4. hpple 提供Html/XML解析
  5. Objective-C-HMTL-Parser 一个很简单的HTML解析 包装了下libxml
  6. RaptureXML 一个简单的XML解析器 包装了libxml
  7. KissXML 解析XML的库 包装了libxml
  8. TBXML 快速解析xml的库
  9. xmldocument 又一个解析XML的库
  10. XMLDictionary 蛮好用的一个XML转NSDictionary的类~
  11. XML-to-NSDictionary XML转NSDictionary
  12. MMMarkdown 一个渲染Markdown到HTML的小引擎
  13. Ashton 在NSAttrbuteString和Html之间转换
  14. XMLParser XML解析成json~
  • 功能性
  1. EGOImageLoading 下载使用网络图片的库
  2. SDWebImage 异步加载网络图片 (UIImage Category)
  3. TCBlobDownload 下载大文件/ 断点续传
  4. GroundControl 一个通过远程plist改变配置的库
  5. appirater 提醒用户稍后到AppStore给你评分的功能
  6. iRate 类似appirater 提醒用户稍后到AppStore评分 支持Mac
  7. ShareKit 分享到国外的一些社交网站 的功能 用的的人挺多
  8. Harpy 新版本更新提醒
  9. iVersion 新版本更新提醒 功能提示
  10. DataKit 以类似CoreData的Model 来获取网络资源
  11. SDURLCache URL缓存
  12. objective-git libgit的包装 挺庞大
  13. nsrails RoR风格的网络交互API
  • SDK
  1. facebook-ios-sdk Facebook的SDK
  2. MGTwitterEngine 一套Twtter库
  3. Twitter-OAuth-iPhone Twitter的OAuth功能
  4. Foursquare-API-v2 Foursquare的库
  5. objectiveflickr Flicker API
  6. octokit.objc Github的API
  7. ParcelKit Dropbox封装CoreData
  8. cocoalibspotify spotify官方SDK
  9. GDFileManagerKit 访问 dropbox GDrive之类的云存储
  • 音频
  1. iOSSystemSoundsLibrary 列出和播放iOS系统声音~
  2. novocaine 一个声音库 录音放音 页面上有CoreAudio的教程链接
  3. TheAmazingAudioEngine 一个声音库 包装了CoreAudio
  4. AudioStreamer 音频流播放库 支持Mac
  5. SimpleAudioEngine 一个简单的播放声音的库
  6. DOUAudioStreamer 豆瓣的音频流播放
  7. audiograph 一个AU的教程 & 示例工程~
  8. NVDSP 一个iOS上的DSP处理
  9. Blip-Synth 一个Blip声音合成器
  10. PGMidi 一个Midi库
  11. sc_listener 检测系统声音等级的库
  12. ObjectAL-for-iPhone 一个OpenAL的包装库 比较好用
  13. SoundBankPlayer 一个仿SoundFout的库 但更简单
  14. Finch 对底层的OpenAL包装
  15. SoundManager 很简单的Sound播放管理
  16. OrigamiEngine 音乐播放引擎 支持 flac, cue, mp3, m4a, m3u
  17. libpd 一个用PD来创造音乐的库? 纯C
  18. pd-for-ios 同libpd
  19. RCTMidiLib 一个Pad连接Midi设备通信的包装
  20. octave 一个免费的音效库 包括48个UI音效
  21. RBDMuteSwitch 在iOS5上检测是否静音
  22. sfArkLib 转换sfArk和sf2的库 很简单
  23. sfArkXTm 简单解压sfArk的一个cpp
  24. unsfark 和上面sfArkXTm一样,是老一点的纯C版本
  25. MuseScore 一个跨平台的音乐软件~ not iOS
  26. OpenSFZ 一个SF2的处理库(Github上有详细说明) An Open SFZ player & SF2 based on SFZero
  27. alsaplayer 一个Linux下PCM库 有sf2 midi等处理过程
  • 游戏
  1. cocos2d-iphone 2D游戏引擎 (SpriteKit后来居上了..)
  2. cocos2d-iphone-extensions cocos2d的扩展
  3. smooth-drawing cocos2d中画出平滑的曲线
  4. tiny-wings 仿TinyWings的Demo 用Cocos2D
  5. Tiny-Wings-Remake-on-Android 如题.
  6. tweejump 是小鸟就跳100层 Game
  7. wizardwar 一个很完整的2D小游戏,支持对战,已在AppStore上架
  8. Sparrow-Framework 开源游戏引擎 2D 1.0
  9. Sparrow-Framework 开源游戏引擎 2D 2.0
  • 图像
  1. GPU OpenGL
  2. GPUImage 基于GPU的实时图像视频处理
  3. XBImageFilters 一个GPU实时处理的库 类似GPUImage
  4. CeedGL 一个OpenGL的包装 用起来更方便
  5. rend-ios 一个OpenGL的轻量包装 接近UIKit
  6. GLView 在UIView的包装 方便使用OpenGL
  7. sift-gpu-iphone 一个包装GL用的,不知道干毛的
  8. ShaderManager 如题 一个Manager 管理创建Shader
  9. GLImageProcessing 演示如何用GPU处理图片
  10. FRD3DBarChart 用OpenGL绘制的3D柱形图
  11. EarthView 显示3D地形图 用OpenGL
  12. CoreAR 一个挺有意思的AR
  13. VRToolKit 一个虚拟现实的库
  • 图像处理
  1. NYXImagesKit 一套图像处理的库 加在UIImage
  2. ios-image-filters UIImage扩展 类似PS的功能 用CoreImage
  3. vImageCategory UIImage扩展 简单的一些处理
  4. MGImageUtilities 几个简单的图片处理 UIImage
  5. UIImageAdjust 一些UIImage的扩展 如亮度 模糊等
  6. CKImageAdditions 一些UIImage的不错功能~
  7. UIImage-BlurredFrame 仅模糊图片中的一块区域~
  8. LBBlurredImage UIImage扩展 可以模糊 不知道性能如何
  9. FilterKit 为拍照添加滤镜 基于GPUImage
  10. TCam 用CIFIlter实现的类似Instagram的类
  11. CLImageEditor 一个功能齐全的图像处理(滤镜/曲线/裁减/旋转/等等~)
  12. PKCoreTechniques CA和CG的特性演示
  13. UIImage-Categories UIImage的一些扩展
  14. uiimage-dsp UIImage模糊的一些方法
  15. UIImage-Sprite-Additions UIImage取Sprite~
  16. iOS-Scratch-n-See 类似结冰玻璃用手画开的效果~
  17. OBGradientView 一个渐变色的CALayer 比系统的好用些
  18. ANImageBitmapRep 一些Bitmap处理的方法
  19. KGNoise 产生带噪音的Image 支持Mac
  20. KGNoiseColorTester 上面KGNoise的演示
  21. SQRiskCursor 一个用CA和UIControl自定义控件的例子
  22. AmazeKit 据说是为PNG加速 或自己画 主要为控件提升性能的
  23. UIImage-PDF 如题 UIImage来显示PDF
  24. JMNoise 给UIView添加Noise噪音的
  25. SWSnapshotStackView 图片加上Stack外框
  26. RMShapedImageView 一个UIImageView的子类 能忽略透明地方的点击
  27. MOOMaskedIconView 一个通过Mask显示Icon的库 只要一个Mask 可以生成很多风格的Icon 类似Tabbar
  28. FTAssetRenderer 运行时的图像Mask生成?
  29. wolfpack 图像处理库CI CG
  30. DSGraphicsKit 支持图片常见处理 视图控制3D等
  31. uiimage-from-animated-gif 显示gif
  32. cam 一个AVFoundation的封装、照相等功能
  33. Filtrr 几个Filter 速度也不行
  34. ZXingObjC ZXing 二维码/条形码处理
  • 颜色
  1. uicolor-utilities UIColor扩展和色板
  2. color 一系列UIColor扩展
  3. ColorUtils 一个UIColor扩展
  4. ColorConverter RGB和HSL转换
  5. InfColorPicker 一个色彩选择器
  6. RSColorPicker 一个不错的色彩选择器 有放大镜
  7. colorpicker 一个很强大的ColorPicker 包装了挺多东西
  8. ColorPicker 功能很棒的一个取色
  9. ILColorPicker 一个还算标准的ColorPicker
  10. NPColorPicker 一个HSV三角取色器
  11. KZColorPicker 又一个HSV圆盘取色器
  12. Color-Picker-for-iOS 一个简单的单色Picker 有一个滑块
  13. LEColorPicker 一个ColorPicker可以取到图片的主色调等
  14. UIColor-converter 一些UIColor的工具~~
  15. SUColor 提供2K多的日本色
  16. Colours-for-iOS 提供不少常用色 和几个方法
  17. ColorArt 类似iTunes的 取一幅图画的主要背景颜色等 (这是个Mac功能)
  18. iOS7Colors iOS7的几种常用颜色
  • 绘图库
  1. iOSPlot 画饼图/折线图的库 用CA
  2. PNChart 扁平风格的折线图/柱形图
  3. TEAChart 扁平风格的饼图/柱形图
  4. ios-linechart 简单好用的饼图/折线图
  5. JYRadarChart 雷达图(螂蛛网图), 风格多样
  6. Core-Animation-Pie-Chart 用CA画饼图 示例
  7. MSSimpleGauge 扇形仪表盘
  8. FBDigitalFont LED液晶效果荧光字体,用CG实现
  9. FBGlowLabel LED液晶效果荧光字体,UILabel
  10. ADGraphView 一个CG绘画库 股票曲线演示
  11. SVGKit 一个用CA来呈现SVG图片的库
  12. Smooth-Line-View 用QuartZ画出平滑的曲线
  13. Smooth-Line-View 用上面的库搭建的比较完整的画板功能 有取色器等
  14. SignatureDemo 一个QuartZ 触摸画平滑曲线的Demo~~~
  15. DynamicGraphView 动态折线图
  16. XYPieChart 饼图~有动画
  17. Animated-Paths 动画画出文字和图形的轮廓~
  • 动画/效果
  1. CA
  2. CA360 一套完整的CA动画Demo
  3. Core-Animation-Fun-House 一套CA动画展示Demo
  4. Core-Animation-Demos 一套CA动画Demo
  5. EnterTheMatrix CA动画演示Demo
  6. ftutils 一套CA的Util库 有一些常用动画
  7. Dazzle 用CA实现的各种有趣的粒子效果
  8. AGGeometryKit CA和3D效果等
  9. RBBAnimation 基于block的CA动画
  • 动画曲线
  1. NSBKeyframeAnimation 那些jQuery带的动画速率曲线
  2. CAAnimation-EasingEquations 一些CA没有的动画曲线
  3. UIView-EasingFunctions UIView的动画曲线~~
  4. PhysicsAnimation 物理动画,用Chipmunk实现的重力效果等
  5. DPMeterView 有重力感应的2D图形动画(例如瓶子的水) 貌似挺有意思~~
  6. Parallax iOS7的景深背景动画效果 一般..
  7. MTAnimation 25种动画曲线~~~
  8. SKBounceAnimation 弹跳的动画曲线
  • 常见动画
  1. BCGenieEffect 果冻吸入的效果 和Mac里最小化的效果一样~~很棒~
  2. iCarousel 一套类似CoverFlow的空间,非常棒,可选多样式,可用于Mac
  3. OpenFlow 类似CoverFlow的效果 挺老的工程 支持Mac
  4. PaperFold-for-iOS 一套类似报纸展开的仿3D效果 用CA实现
  5. MPFoldTransition 那个能左右上下Cube/Paper翻页的效果 挺棒
  6. iOS-Flip-Transform 一个Flip翻页效果 支持上下左右翻页 会变暗
  7. AFKPageFlipper 一个Flip翻页效果 可能性能不够好 也不会变暗
  8. DoorwayTransition 一个OpenDoor的动画
  9. Flipboard-3D-Transform-Effect-Example 如题Flip效果 没测试
  10. PaperFoldMenuController 一个Map折纸动画效果 一般
  11. XYOrigami Map折纸动画~
  12. PaperStack 用OpenGL实现的类似iBook的效果 但是一般
  13. GCRetractableSectionController 让TableView能按Group展开合起
  14. HMGLTransitions 一个OpenGL的视图切换 跑不起来? 很久没更新
  15. EPGLTransitionView 一个OpenGL的视图 包括iBook效果 折纸翻页效果 散落效果
  16. leaves 一套有些类似iBook的效果但只有横向翻页 被用在看书的地方
  17. GC3DFlipTransitionStyleSegue 用GL实现的iBook 一般
  18. KNSemiModalViewController 一个推出ModalView的动画 后面的会缩小上移
  19. letterpressexplosion UIView的撕碎爆炸效果 (CA实现)
  20. FancySegue 几个GL实现的动画 虽然不怎么好
  21. CoreImageTransition 用CI实现的一些动画过渡 过雾~
  22. LTransitionImageView 一个Image的过渡效果
  23. STScratchView 刮奖的效果
  24. XBPageCurl GL实现的翻页效果~
  25. ADTransitionController 很多有趣的导航视图切换动画
  26. VCTransitionsLibrary iOS7下,一些自定义转场动画~ 挺棒
  27. JazzHands IFTTT简介的动画框架,是个关键帧动画框架哟~
  • 控件
  1. 1.HUD
  2. MBProgressHUD 一个HUD 用得很广泛 无阴影 全屏模态
  3. MBProgressHUD 和MBHUD一样 但有更新 添加了BLock iOS6
  4. ATMHud 很棒的HUD 有阴影和动画~
  5. SVProgressHUD 一个HUD 样式类似MB_HUD 有一些进度等
  6. HTProgressHUD 又一个HUD
  7. ETActivityIndicatorView Windows Phone 7风格风火轮
  8. 2.Slider
  9. JMSlider 一个很小清新的Slider 用CA画的
  10. iOS-Custom-Controls 按住可以出Pop的UISlider
  11. MTZTiltReflectionSlider 一个模仿iOS6 Music的Slider
  12. ASRangeSlider 一个两段式的Slider
  13. DCFineTuneSlider 可以拖动外部 和显示左右箭头的Slider
  14. ARAnnotatedSlider KVO教学 一个在Slider上面显示小Poper的~
  15. LARSBar 显示声音dB的Slider
  16. EDStarRating 打星评级 Slider控件
  17. OBSlider 模拟iPhone音乐进度的表现
  18. TLTiltSlider 仿iOS6 音量Slider,有金属光泽动画
  19. RETrimControl 类似iOS6录像裁减的控制条
  20. 3.Progress
  21. KOAProgressBar 自定义ProgressBar
  22. DDProgressView 平面风格的Progress进度条
  23. WNProgressView 一些有趣风格的ProgressView
  24. YLProgressBar 一些不错样式的ProgessBar
  25. DACircularProgress 圆环形进度条
  26. MRProgress 圆环进度条,iOS7风格,iOS7 Only
  27. MDRadialProgress 圆环进度条,多种风格 iOS6+
  • 侧滑
  1. ViewDeck 左右侧滑控件
  2. MSDynamicsDrawerViewController iOS7 动态弹性和景深的侧滑~
  3. ECSlidingViewController 一个很简单的侧滑控件
  4. JASidePanels 一套不错样式的侧滑控件
  5. PSStackedView 一套侧滑且带Stack的控件,类似Twitter iPad
  6. PKRevealController 一个侧滑控件
  7. JTRevealSidebarDemo 一个类似FB侧滑的Demo
  8. PPRevealSideViewController 又一个类似FB的侧滑控件
  9. CLCascade 类似Twitter iPad版的侧滑控件
  10. SlideViewController 侧滑菜单 类似FB的界面
  11. MMDrawerController 一个侧滑控件
  12. MFSideMenu Facebook风格侧滑
  13. SWRevealViewController Facebook风格侧滑
  14. DDMenuController 又是一个Facebook风格侧滑
  15. REFrostedViewController 一个iOS7风格的毛玻璃侧滑菜单
  16. RNFrostedSidebar 一个由侧面划出的半透明菜单(小圆片),不错的交互效果
  17. Popover
  18. PopoverView CA实现的Popover 可用于iPhone,样式清新
  19. WYPopoverController 高可定制Popover 样式不错,很棒
  20. CMPopTipView 把PopView带入的iPhone
  21. FPPopover 一个PopOver 支持iPhone
  22. WEPopover 一个仿Popover API库 支持iPhone
  23. UAModalPanel 一个类似PopView控件 可以比较多的自定义 Demo样式较乱
  24. ColorPopover 一个用WEPopover写的单色选择
  25. MultiRowCalloutAnnotationView 在Map里面弹出带表格的Pop
  26. QBPopupMenu 类似iOS文字上的Pop 可以自定义~
  27. kxmenu 一个PopView,动作还可以
  28. RNGridMenu 一个Pop菜单,有背景模糊,效果不错~
  29. GIKPopoverBackgroundView 为PopOver提供无缝背景 很棒
  30. AwesomeMenu Path的扇形弹出按钮效果(CA)
  31. QuadCurveMenu 上面AwesomeMenu的fork 类似Path的菜单
  32. MGTileMenu 弹出按钮菜单 在四周成方形 效果不错
  33. ADPopupView 在UIVIew上弹出自己画的界面 挺丑 但可以看看实现
  34. KLExpandingSelect 四叶草风格弹出菜单~
  35. StackMenu Mac的Stack弹出菜单
  • 下拉刷新
  1. MSPullToRefreshController 一个不错的上下拉刷新的控件 里面是彩虹
  2. EGOTableViewPullRefresh 下拉刷新,很早的一个控件了2年没更新了
  3. PullToRefresh 下拉刷新
  4. SVPullToRefresh 下拉刷新 扩展了UIScrollView 很方便简单
  5. HybridRefreshGestureRecognizer 一个类似似TweetBot的下拉刷新样式
  6. sspulltorefresh 下拉刷新
  • 状态栏
  1. JDStatusBarNotification 状态栏控件,支持iOS6、7
  2. MTStatusBarOverlay 状态栏的控件,但很久没更新了
  3. KGStatusBar 状态栏控件,提醒
  4. GridView
  5. AQGridView 类似TableView但有横向分类,就像Android Launcher
  6. GMGridView 又一个GridView 很不错,自带横纵排序编辑等功能
  7. KKGridView 又一个GridView 已经Deperacted 直接用系统的就好
  8. A3GridTableView 又一个GridView 貌似支持类似图标样的上栏
  9. LIExposeController 一个类似GridView的东西
  10. Alert
  11. BlockAlertsAnd-ActionSheets 一个Block支持的Alert控件 支持自定义 不错~
  12. PXAlertView 一个用来替代系统的Alert,高可定制,有iOS7风格
  13. MBAlertView 一个简洁的AlertView,和HUD
  14. MJPopupViewController 用不同左右动画弹出AlertView
  15. MZFormSheetController 一个不错的弹出Alert Controller
  16. WCAlertView 一些不错的自定义AlertView
  17. GRAlertView 用CA画的带颜色的AlertView
  18. SBTableAlert 一个AlertView 可以带表格 可以用苹果风格
  19. URBAlertView 自定义AlertView 还有各种动画
  20. SIAlertView 一个样子不错的自定义AlertView
  21. MBMenuController 一个自定义AlertSheetVC
  22. JLActionSheet 另一个自定义AlertSheet
  23. ASDepthModal 实现简单的3维景深的模态视图 提供背景模糊
  24. RNBlurModalView 将后方视图模糊
  25. LMAlertView iOS7 可自定义内容的AlertView
  26. SDCAlertView iOS7 可自定义内容的AlertView
  27. Segment
  28. SVSegmentedControl 一个分段选择控件 类似Mac10.7测试版中的UI 很棒~
  29. URBSegmentedControl 一个灵活的分段控件 可以上下
  30. MCSegmentedControl 一个系统分段的子类 可以自定义颜色
  31. AKSegmentedControl 完全自定义的分段控件 风格不错
  32. HMSegmentedControl Chrome风格的Tabbar分段
  33. SDSegmentedControl 一个离散并且凹陷效果的分段
  34. PPiFlatSegmentedControl 扁平风格的Segment (包含iOS7样式)
  35. Switch
  36. DCRoundSwitch 仿UISwicher 可以自定义 很棒
  37. TTSwitch 一个可以完全自定义的UISwich~~
  38. KLSwitch iOS7风格的Switch 高仿
  39. MBSwitch iOS7风格的Switch 效果多
  40. SevenSwitch iOS7风格的Switch 效果很多~
  41. Button
  42. CoolButtons 用CA画的带Glow的button 仿照系统
  43. MAConfirmButton 一个类似AppStore下载的按钮 可以动画颜色大小等
  44. FTWButton 一个UIControl实例的Button 可以看到如何自定义控件 有不错的动画效果
  45. gradientbuttons 一个带有不同风格的Button~ 用CA绘制
  46. DCActionButtonsController 一个PopOver的里面带各种画出的按钮
  47. BPBarButtonItem 一个BarItem的不错的on the fly 生成
  48. BButton 一种自定义Button 样式类似Twitter的Bootstrap 用CA画的
  49. OBShapedButton 用CA绘制的特殊形状button,可以检测path touch
  50. UIGlossyButton 一些用CA画的带高光的奇怪Button...
  51. Scroll/Table
  52. LRSlidingTableViewCell 一个简单的左右滑动Cell 类似Twitter
  53. TISwipeableTableView UITable的左右滑动 类似Twitter
  54. TDBadgedCell 在TableCell右侧添加badge 有不同风格
  55. UITableViewZoomController 类似Google+的 滑动Table缩放显示内部图片
  56. UITableViewTricks TableView的扇形样式
  57. iPhoneMK 几个简单的自己实现的View和Cell,提供某些常见功能
  58. EasyTableView 一个支持左右的TableView 不错~
  59. ZKRevealingTableViewCell 一个简单的可以左右滑动的TableCell
  60. ADLivelyTableView 非常棒的TableCell显示动画~~~
  61. MHLazyTableImages 一个简单的Table加载网络图片 从Apple的例子中改的
  62. MHPagingScrollView 一个可以Page的ScrollView 但可以看到左右的预览 类似WP7
  63. KLScrollSelect 一个竖屏滚动的选择瀑布流
  64. RNRippleTableView Cell梳子抖动~ 挺有创意
  65. RETableViewManager 数据驱动的Table 由数据画出Table内容
  66. ios-SDNestedTable 二级菜单的Table
  67. SWTableViewCell 类似iOS7邮件中的Cell,左右滑动出现多个功能键
  68. TSUIKit 复杂数据表格、tab展示的UI控件,适合复杂数据展示
  69. Notification
  70. EKNotifView 很简单的下方Notif实现
  71. MKInfoPanelDemo 一个从上方滑下的Notif控件 类似TwieetBot
  72. TSMessages 在导航栏显示一个下拉Notif 效果不错
  73. YRDropdownView 类似Tweetbot警告的下伸控件
  74. NoticeView 类似Tweetbot的下伸控件
  75. AJNotificationView 效果很不错的上部Notif提示
  76. Label/Text
  77. MarqueeLabel UILabel跑马灯效果
  78. ICTextView 文本查找,支持正则,关键词高亮
  79. CoreTextHyperlinkView 用CoreText画的 可以带Link的Text
  80. EGOTextView UITextField替代品 支持富文本编辑
  81. iOS-Rich-Text-Editor 富文本编辑
  82. MTAnimatedLabel 类似滑动解锁的闪动Label
  83. TextGlowDemo 一个给Label发出Glow光亮的Demo
  84. FXLabel 很多不错的Label特效
  85. AUIAnimatedText 一个UILabel子类 可以简单动画 颜色大小字体
  86. RTLabel 简单的富文本Label 可以用Html样式
  87. TTTAttributedLabel 一个Label控件 支持富文本属性
  88. MDHTMLLabel 一个富文本Label控件,可以支持链接和点击事件
  89. DTCoreText CoreText的包装,可以输入HTML~~
  90. OHAttributedLabel 支持NSAttributedStringUILabel控件
  91. ARLabel 自动字体大小
  92. LEffectLabel 渐变动画颜色的Label,类似滑动解锁
  93. BBCyclingLabel 在Label发生改变时,有动画效果
  94. HTAutocompleteTextField TextField带自动补全
  95. JVFloatLabeledTextField 带有能浮动的占位符的 文本框
  96. CMHTMLView 用HTML展示富文本,但能有Native类似的体验
  97. 界面切换/导航
  98. APExtendedPageController 类似Chrome左右滑动切换视图的控件
  99. MBSpacialViewController 2D上下左右导航的奇怪视图
  100. MSMatrixController 又一个 2D上下左右导航的奇怪视图..
  101. MHTabBarController 一个类似Android的上方Tabbar
  102. FSVerticalTabBarController 在左侧的Tabbar
  103. AKTabBarController 自定义Tabbar 样式类似AppStore
  104. MGSplitViewController 类似系统的UISplitVC 但有更多功能
  105. PSTCollectionView 类似系统的UIColloectionView 为了支持iOS4.3
  106. JMTabView 一个TabView 用CA画的,类似 Mac系统的单选控件
  107. MWFSlideNavigationViewController 一个能左右上下滑动的简单导航栏
  108. UIScrollSlidingPages 一个和Chrome类似的左右滑动Pager
  109. FlipBoardNavigationController 类似网易客户端/Flipboard手机 左右滑动的Nav
  110. BCTabBarController Twitter类似的Tabbar 2年前的工程
  111. CKSideBarController 类似Twitter iPad的左侧Tabbar
  112. DVSlideViewController 类似Safari的滑动切换
  113. HGPageScrollView 类似Safari浏览的分页控件、
  114. HSImageSidebarView 一个类似Keynote的侧边栏
  115. RNSwipeViewController 滑动界面显示另一个界面 类似下拉状态栏查看天气
  116. RESideMenu iOS7风格侧滑
  117. 知名效果Demo
  118. KLNoteViewController 一个类似Evernote旧版的Stack界面 绿色的
  119. REComposeViewController 一个类似系统Twitter分享界面~
  120. DETweetComposeViewController 一个iOS4实现的 类似iOS5的twitter分享
  121. JTGestureBasedTableViewDemo 一个类似Clear的Demo
  122. Opaque 一个Clear的Demo
  123. MCSwipeTableViewCell 类似Mailbox的控件 和Clear差不多
  124. CHTCollectionViewWaterfallLayout 瀑布流控件
  125. PSCollectionView 类似瀑布流式的控件
  126. IIIThumbFlow 瀑布流控件
  127. WaterflowView 瀑布流的View 看样子Star挺多
  128. KNPathTableViewController 在Table右侧显示类似Path的时间 很简单~
  129. GSBookShelf 一个类似iBook书柜的实现
  130. M6ParallaxController 类似Path封面的效果
  131. ZGParallelView 类似Path的封面效果 貌似不错
  132. TimeScroller 类似Path右侧的时间小滑块
  133. chatheads Facebook 一个一直最上方的头像 点击可以显示Table
  134. MBSliderView 滑动解锁
  135. DKLiveBlur 雅虎天气风格的动态模糊
  136. ios-realtimeblur iOS7 模糊效果
  137. GHSidebarNav 新版Facebook 侧滑等UI
  138. LXReorderableCollectionViewFlowLayout iBook中 拖动图书的功能
  139. MDCParallaxView 景深效果 就像Path的封面那样
  140. 其他
  141. SMPageControl 一个仿UIPageControl的API类 可以自定义小点点~
  142. REActivityViewController 开的ActivityView实现
  143. DCControls 不错的扇形滑动控件 平面风格
  144. BSKeyboardControls 与键盘相关的控制 控制 上一项下一项
  145. OCMapView 一个MapKit标注聚合用的东西~
  146. NJKWebViewProgress 显示WebView加载进度
  147. REMenu 一个导航栏下拉菜单 不错~
  148. action-sheet-blocks 为ActionSSheet提供block方法
  149. ADClusterMapView Map的地标Cluster 应该不错~
  150. TPKeyboardAvoiding 一个UIView的 在有键盘时上移
  151. calloutview 实现了私有的UICalloutView 类似地图中的弹出控件
  152. SVPulsingAnnotationView 一个自定义MapLocator 动画控件
  153. OWActivityViewController 一个类似系统的分享控件
  154. SYEmojiPopover 显示一个Emoji选择de PopOVer
  155. fingertips 在屏幕上显示触摸点 只支持iPad2和iPhone4s以上
  156. ASTouchVisualizer 为屏幕触摸添加指示 可用于屏幕录制
  157. openspringboard 仿SpringBoard的东西
  158. HMLauncherView 仿SpringBoard的东西
  159. CQMFloatingController 一个浮动的VC 类似Popover(没有箭头) 可以用在横屏iPhone等
  160. WSCoachMarksView 为某个控件加上蒙板 类似Spotlight
  161. KLHorizontalSelect 横向扫动选择
  162. iOS-StyledPageControl 自定义PageControl,多种样式
  163. iOS-blur iOS7的模糊效果 iOS7Only
  164. FXBlurView iOS7的模糊效果 可以用在iOS5以上
  165. MYBlurIntroductionView 带有模糊背景效果的 Intro
  166. Masonry AutoLayout框架
  167. KeepLayout AutoLayout框架 貌似比较好用
  168. MLPAccessoryBadge 一些自定义badge~
  169. JSBadgeView 数字角标 Badge
  170. MSCellAccessory Cell右侧的小箭头~
  171. ios-fontawesome 一套用字体实现的Icon
  172. WTGlyphFontSet 另一套用字体实现的Icon
  173. DAKeyboardControl 键盘滑动消逝,就像系统内置的短信界面
  174. JWFolders iOS6以下的文件夹展开效果
  175. OCCalendar Popover样式的日期选择器
  176. IBAForms Form构建。2年前的工程了..
  177. ActionSheetPicker 一个PopOver里面是Picker
  178. MSCollectionViewCalendarLayout 日历事件样式 iOS6以上
  179. MosaicUI WP7磁片风格View 自适应大小
  180. MosaicLayout WP7磁片风格Layout UICollectionView
  181. iPhone-IntroductionTutorial 用于创建启动引导界面的...
  182. US2FormValidator 一套Table表单验证提示
  183. AURosetteView 玫瑰花瓣似的展开菜单
  184. EAIntroView App启动的介绍界面
  185. InformaticToolbar 下边栏显示提示和动作
  186. 高级功能
  187. PAPasscode 类似系统的输入密码界面
  188. KKPasscodeLock 又一个类似系统输入密码界面
  189. PTShowcaseViewController 能显示音视频等一堆格式文件的控件
  190. Reader 一套显示PDF的库 支持大文件、加密文件 有iBook样式的界面 性能很好
  191. FastPdfKit 一套PDF库 性能据说很好 也有界面
  192. Kal 一套日历控件 高仿iOS默认
  193. objc-TimesSquare 一套日历控件 类似iOS默认 貌似清新一些
  194. ABCalendarPicker 高仿iOS默认日历的DatePicker~
  195. MWPhotoBrowser 一套图片浏览控件 高仿iOS默认 支持网络图片
  196. PTImageAlbumViewController 图片浏览控件 仿iOS默认
  197. FGallery-iPhone 图片浏览器
  198. AGImagePickerController 选取图片 支持多选
  199. ELCImagePickerController 一个仿系统的ImagePicker 但支持多选
  200. PhotoViewer 一个图片浏览的控件
  201. KTPhotoBrowser 图片浏览控件 3年没更新了
  202. DLCImagePickerController 一个用GPUImage实现的 ImagePicker功能,支持拍照和特效
  203. route-me 一套自定义MapView 高仿系统 但支持不同的数据源
  204. GrowingTextView 一个高仿短信发送的输入框
  205. PHFComposeBarView 高仿短信发送输入框
  206. MessagesTableViewController 高仿短信界面,可定制
  207. AcaniChat 仿短信App 挺老了
  208. UIBubbleTableView iOS短信的泡泡界面,可以支持图片
  209. ODRefreshControl 一个高仿iOS6下拉刷新的控件
  210. ssmessagesviewcontroller 和系统类似的发短信界面 挺粗糙 当然现在系统已经提供了
  211. SVWebViewController 一个简易的浏览器功能控件
  212. TSMiniWebBrowser 一个简易的内置浏览器
  213. TITokenField 一个高仿Mail和短信 选择联系人的控件
  214. DAAppsViewController 一个仿AppStore的列表界面 输入appId集合
  215. WUEmoticonsKeyboard 输入表情的自定义键盘
  216. CKCalendar 一个朴实的日历
  217. LBYouTubeView 显示Youtube视频..国内无用
  218. 套装
  219. tapkulibrary 一套比较大的自定义控件库 包括不错的HUD,进度条,日历,CoverFlow等
  220. FlatUIKit 一套完整的扁平风格的UI (Flat)
  221. Weibo 一套仿iOS7的控件
  222. UI7Kit 一套iOS7风格的控件,可以在iOS5、6上用
  223. PrettyKit 一套系统UI的子类 有着平滑渐变和阴影效果
  224. nui 一套加在UIKit上的Category,允许用类CSS代码来控制样式
  225. QuickDialog 一套自定义控件库,用来快速建造基于Table的设置
  226. MGBoxKit 一套UIView的扩展和子类(Table Grid..) 有不错的类CSS的功能 有些好用的代码
  227. MGBox MGBox的旧版 应该去看v2
  228. iOS-boilerplate 一些常见功能实现的例子:HUD Table滑动,打开URL用WebView等 挺老的工程
  229. idev-recipes iDevRecipes博客的代码,演示了如何自定义一些控件,代码比较老..
  230. AePubReader 一个阅读epub的
  231. 较完整的App
  232. Brushes 绘画的App,超棒,Appstore上架应用
  233. Inkpad 一个完整的矢量绘图App,很棒,已上架
  234. modizer !!!超强大的App 可以读取和演奏各种mod音乐 midi合成 解压 下载 自带庞大音乐库~ 已上架
  235. kxmovie 一个ffmpeg的播放器 ~~~ 需要先构建ffmpeg
  236. ioctocat 一个Github客户端
  237. cheddar-ios 一个日程管理的App 应该比较知名
  238. AppSales-Mobile 基于iTunes Connect来查看App销售状况
  239. canabalt-ios 一个跑步的小游戏~
  240. baker 一套HTML5构建的ebook库 貌似挺强大
  241. iPhoneTracker 一个挺老的App 2年前
  242. Off-the-Record-iOS 一个实时聊天的功能 支持一些XMPP协议
  243. kokuban 一个iPad小画板 3年前
  244. glpaint 从Appled的GLPaint改的
  245. OpenGLMilkyWay 银河~~ 很棒 有教材
  246. iphone-app OSChina 开源中国 ..竟然挪到git.oschina.net去了。。
  247. BeeFancy 一个仿Fancy的客户端 基于BeeFranework
  248. ruby-china-for-ios RubyChina官方客户端
  249. ruby-china-ios 和上面一样?
  250. wh-app-ios 白宫官方App
  251. CastleHassle 一个Cocos2D的物理小游戏 貌似内容挺丰富~
  252. DocSets-for-iOS iOS显示DocSets 可以下载iOS官方Doc~
  253. newsyc 一个newsyc.me的客户端 (iPhone hacker News)
  254. News-YC---iPhone hackerNews的客户端
  255. Upcoming 一个设计很棒的日程安排
  256. Anypic 一个像Instagram那样的图片分享社区App
  257. ClassicMap 旧版iOS地图
  258. ntlniph Twitter客户端 古老的工程了
  259. lastfm-iphone Last.fm官方客户端
  260. ThatInbox Ink出的邮件客户端
  261. ThatCloud Ink出的云端文件管理
  262. ThatPDF Ink出的PDF编辑
  263. ThatPhoto Ink出的图片编辑
  264. 开发/调试工具
  265. xctool iOS工程构建和测试工具,用于替代系统的xcodebuild (CI)
  266. PonyDebugger 一套Debugger工具,可以在电脑浏览器上远程调试iOS程序~查看试图层次、网络等
  267. NSLogger 一套Log工具,可以在电脑上通过client实时查看NSLog,甚至是图片和二进制文件 支持Android
  268. KIF 一套用Private API做的调试库,可以以用户的方式测试(touch in xxx)
  269. gh-unit 一套ObjC的测试框架
  270. DCIntrospect 一套iOS调试工具,在iOS界面里显示信息
  271. CocoaLumberjack 一套类似Log4j的东西,可提供企业级的Log~~~~
  272. Frank 自动化测试工具?
  273. superdb 一个Debuger工具 用命令行调试。。
  274. iOS-Hierarchy-Viewer 一个调试iOS界面的工具 通过浏览器访问~~ 值得瞅瞅~~
  275. hierarchydetective 一个3D显示iOS视图层级的调试工具
  276. CATransform3D-Test 调试CATransform3D矩阵的工具~
  277. LLDB-QuickLook 在调试时用命令行调用QuickLook来显示图片、UIView
  278. iConsole 在App内显示调试信息、执行调试命令
  279. Nocilla 一个模拟HTTP响应的调试库
  280. dyci-main 一个可以在调试时动态添加代码的工具 需要改动Xcode
  281. GestureLab 调试和把玩GestureRecognizor的
  282. cedar BDD风格单元测试
  283. iOS-UI-Assets iOS5.1中,系统控件和App的图片资源Dump 嗯..iOS7后就没用了
  284. iOS-Artwork-Extractor 导出iOS系统App及控件的图片资源 只支持到iOS5
  285. 旧代码 & 奇怪的东西
  286. DB5 通过plist构建界面的小东西
  287. HockeyKit 一套iOS的 Ad-Hoc升级框架.包含PHP服务端
  288. Briefs 一套类似原型制作工具
  289. OpenTLD 视频跟踪检测 貌似挺高深
  290. SimFinger 一些Fake系统图标的App 还有一些设备外框的图片、触摸点图片可以用
  291. scifihifi-iphone 已经弃用的旧代码 新工程去看github页面
  292. iphonearkit 4年前的代码 增强现实 (AR)
  293. TouchDB-iOS 一个嵌入式的CouchDB实现
  294. iOS-Runtime-Headers 从运行时Dump出来的公有/私有 Framework头 通过这个可以进行不同版本的对比
  295. objectiveresource RoR相关的东西
  296. GRMustache Mustache模板?
  297. titanium_modules Titanium 的常用模块
  298. fontdiao 类似FontAwesome的东西,包含了一些国内网站logo
  299. 代码库大包包
  300. iphone-3.0-cookbook- 随书代码
  301. iOS-5-Cookbook 随书代码~
  302. iOS-6-Cookbook
  303. iOS-6-Advanced-Cookbook
  304. iOS7-day-by-day iOS7-day-by-day 博客的代码
  305. iOS7-Sampler iOS7的一些新功能演示~
  306. MyProjects 一些http:/ /mysparks.info上面的代码
  307. Xcode-Snippets 一些Xcode代码片段
  308. Mac Only
  309. gitx 一个git的图形客户端
  310. Chameleon 把UIKit克隆到Mac里
  311. Induction 一个Mac上的数据库客户端 支持Mysql Postgre Nosql Redis等
  312. twui 一个Mac的自定义控件库,有类似iOS的Table和Tab,CA实现
  313. CocoaPods 一个Ruby程序,用来管理Cocoa库依赖
  314. kod Mac上的代码编辑,Chrome风格,小巧快速
  315. slate Mac上窗口管理
  316. nu 一个包装,用nu语言来写东西?
  317. appledoc 用来生成Apple格式的文档和网页
  318. macgap 包装以可以用类似js的写法来调用函数
  319. Quicksilver 这个..Mac上知名的快速启动
  320. mogenerator 生成CoreData的Code
  321. nv Note程序
  322. iTerm2 知名终端~
  323. Sparkle 一个软件升级用的Framework
  324. PostgresApp PostgresSQL客户端
  325. terminal-notifier 通过终端发送Notification
  326. ShiftIt 管理桌面窗口 状态栏插件
  327. textmate 这个不用说了。。~~~
  328. textmate-missingdrawer Textmate插件 一个侧边栏
  329. AckMate Textmate插件 运行ack?
  330. clicktoflash Webkit插件 屏蔽Flash
  331. MongoHub-Mac MongoDB的客户端
  332. CocosBuilder 用于cocos2d的JS绑定 GUI设计
  333. Rebel 一些AppKit的扩展
  334. Textual 轻量的IRC客户端
  335. vico 一个开发用文本编辑器
  336. pomodoro 一个时间管理的App
  337. visor Terminal的插件
  338. GoAgentX 这个不用说了....
  339. Pixen 像素画 的工具
  340. DataKit 不知道什么好想是与数据和网络连接的?
  341. Color-Picker-Pro 取色器 状态栏插件
  342. SNRHUDKit Mac版的HUD
  343. ConnectionKit FTP和WebDAV
  344. OpenEmu 各种游戏机模拟器
  345. Hacky 一个完整的Hacker News客户端~~
  346. WWDCDownloader 下载WWDC用,Xcode5 only
  347. XVim Xcode的插件 支持绑定VIM快捷键
  348. QuickCast 一个录屏分享的App
  349. zephyros 窗口管理 for hackers
  350. shuttle SSH快捷方式 菜单栏插件
  351. qlstephen 系统QuickLook的插件,查看无扩展名的文本文件
  352. INAppStoreWindow Mac AppStore风格的NSWindow
  353. spectacle 窗口管理 不用鼠标
  354. limechat IRC客户端
  355. LiveReload Web开发
  356. selfcontrol 自控。。禁止上网一段时间
  357. Popup 在状态栏弹出的Popup
  358. MPlayerX 一个MPlayerX的测试分支
  359. QuickCursor 快速启动编辑
  360. Sonora 一个小巧的 挺棒的音乐播放器
  361. SafariOmnibar 一个Sarari插件
  362. HexFiend 16进制编辑器
  363. Xcode5-Plugin-Template Xcode5插件的开发模板
  364. cocoapods-xcode-plugin cocoapod 插件
  365. KFCocoaPodsPlugin cocoapod 插件, 方便编辑Podfile,显示构建日志
  366. VVDocumenter-Xcode Xcode的插件 写注释时自动提醒JavaDoc风格
  367. ColorSense-for-Xcode Xcode的插件 支持动态调整UIColor
  368. KSImageNamed-Xcode Xcode的插件 支持显示工程里的UIImage
  369. Lin Xcode的插件 显示NSLocalizedString的对应字符串
  370. nib2objc 把xib和nib翻译成m 包括命令、GUI、Service
  371. iOS-Framework 编译iOS的Framework的通用模板
  372. Alcatraz 管理和发现插件~~
  373. UIEffectDesignerView 原生iOS/Mac粒子效果设计
  374. SCStringsUtility 开发工具 制作多语言
  375. APNS-Pusher 通过APNS发推送~
  376. 非Github
  377. cooliris-toolkit Cooliris出品基础工具包,Github有Clone
  378. core-plot 强大的2D数据绘图库
  379. j2objc 神奇的东西,将Java翻译成ObjC~ Google出品
  380. theunarchiver 解压,支持Zip, Tar, Gzip, Bzip2, 7-Zip, Rar, LhA, StuffIt等
  381. macfuse 创建OSX的文件系统~
  382. google-toolbox-for-mac 著名的Google工具箱
  383. leveldb Google大神开发的KV存储,高性能,低内存
  384. RegexKitLite 著名的ObjC 正则表达式
  385. zipachive 用得很广泛的ObjC zip文件压缩解压 (github上有几个mirror)
  386. youtube下载神器:https://github.com/rg3/youtube-dl
  387. 我擦咧
  388. vim插件:https://github.com/Valloric/YouCompleteMe
  389. vim插件配置:https://github.com/spf13/spf13-vim
  390. ----------------Mac完整项目----------
  391. 电台:https://github.com/myoula/sostart
  392. ----------------iOS完整项目----------------
  393. 1,豆瓣相册 https://github.com/TonnyTao/DoubanAlbum
  394. 2,voa在线英语 https://github.com/cubewang/NewsReader
  395. 3,电竞第一视角 https://github.com/cubewang/GameDaily
  396. 4,开源中国的iOS客户端 https://github.com/oschina/iphone-app
  397. 5,很优雅的一些组件 https://github.com/sobri909/MGBox2
  398. 6,ios控件学习:https://github.com/iimgal/StudyiOS?source=c
  399. 7,reader :https://github.com/vfr/Reader
  400. 8,git客户端: https://github.com/dennisreimann/ioctocat
  401. 9,speakEnglish:https://github.com/cubewang/SpeakEnglish ❤❤❤❤❤❤❤❤克伟
  402. 10,新闻阅读 :https://github.com/samuelclay/NewsBlur
  403. 11,last.fm:https://github.com/c99koder/lastfm-iphone
  404. 12,LBS游戏:https://github.com/Kjuly/iPokeMon
  405. 13,ThatInbox 是iOS平台上一个免费开源的Email 客户端:https://github.com/Ink/ThatInbox
  406. 14,ThatCloud是一个免费开源的iOS app,允许你访问、查看以及使用你在网上存储的内容,可以很好地帮你完成工作:https://github.com/Ink/ThatCloud
  407. 15,ThatPhoto是使用了Ink Mobile Framework框架来连接到其他iOS 应用程序,你可以用它来编辑和管理照片:https://github.com/Ink/ThatPhoto
  408. 16,ThatPDF一个开源的,用来阅读、签名和注解PDF 文档的工具:https://github.com/Ink/ThatPDF
  409. 17,xmpp聊天系统:https://github.com/chrisballinger/Off-the-Record-iOS
  410. 18,对口袋NCE有用的app:https://github.com/imtiger/HappyEnglish❤❤❤❤❤❤❤
  411. 19,一个像Instagram那样的图片分享社区App:https://github.com/ParsePlatform/Anypic
  412. 20,黑客阅读:https://github.com/mmackh/Hacker-News-for-iOS
  413. 21,画图软件:https://github.com/sprang/Brushes ❤❤❤❤❤❤
  414. 22,APN软件:https://github.com/lexrus/APN.iOS
  415. 23,Sol的天气app:https://github.com/comyarzaheri/Sol
  416. 24,货币转换:https://github.com/nicklockwood/Concurrency
  417. 25,来电归属地查询的软件(不能上架):https://github.com/Quotation/WhoCall
  418. 26,Mogo iOS 客户端:https://github.com/jurre/Mogo-iOS
  419. 27,https://github.com/AshFurrow/C-41
  420. 28,使用XMPP协议的IM开源软件:https://github.com/chrisballinger/ChatSecure-iOS
  421. 29,WWDC:https://github.com/indragiek/WWDC-2014
  422. 30,移动支付公司 Square 将去年收购的照片应用 Viewfinder 开源了,包含服务端、iOS 和 Android 应用代码:https://github.com/viewfinderco/viewfinder
  423. 31,圣经小助手 :https://github.com/nixzhu/Bible-Assistant
  424. 32,已阅 :https://github.com/ming1016/RSSRead
  425. 33,美国白宫APP:https://github.com/WhiteHouse/wh-app-ios
  426. 34,Ruby for China: https://github.com/ruby-china/ruby-china-for-ios
  427. 35,breadwallet iOS bitcoin wallet :https://github.com/voisine/breadwallet
  428. 36,品趣:https://github.com/novel-design/novel-design
  429. 37,懒人笔记:https://github.com/liaojinxing/Voice2Note
  430. 38, Doppio :https://github.com/chroman/Doppio
  431. ----------------开源项目的协议--------------
  432. 网易新闻的开源协议: http://m.163.com/special/newsclient/ios_libraries.html
  433. ----------------组件----------------
  434. 自定义tabbar(1)的: https://github.com/i300/TweetBotTabBar
  435. 自定义tabbar(2)和上拉刷新:http://www.cocoachina.com/bbs/read.php?tid=62061&keyword=tabbar
  436. 自定义tabbar(3):https://github.com/jinthagerman/JBTabBarController
  437. 类似instagram的tabbar:https://github.com/boctor/idev-recipes/tree/master/CustomTabBarNotification
  438. coretext:https://github.com/Cocoanetics/DTCoreText
  439. 图片延时加载:http://developer.apple.com/library/ios/#samplecode/LazyTableImages
  440. 网络请求:https://github.com/pokeb/asi-http-request
  441. https://github.com/AFNetworking/AFNetworking
  442. Json解析:https://github.com/johnezang/JSONKit
  443. 图片异步加载:https://github.com/rs/SDWebImage?source=c
  444. 瀑布流1):https://github.com/aceisScope/WaterflowView
  445. 瀑布流2)http://code4app.com/ios/%E7%80%91%E5%B8%83%E6%95%88%E6%9E%9C-%E4%B8%8D%E5%90%8C%E7%9A%84%E5%AE%9E%E7%8E%B0%E6%96%B9%E5%BC%8F/4fdfecd96803fa117f000000
  446. 瀑布流3):https://github.com/chiahsien/CHTCollectionViewWaterfallLayout❤❤❤❤❤❤❤
  447. 瀑布流4):http://www.cocoachina.com/bbs/read.php?tid=94851&keyword=%C6%D9%B2%BC%C1%F7
  448. 瀑布流5):https://github.com/ptshih/PSCollectionView ❤❤❤❤❤❤❤❤❤❤
  449. 瀑布流6):http://www.cocoachina.com/bbs/search.php?ss=index#submit 搜索:瀑布流
  450. 瀑布流7):https://github.com/steipete/PSTCollectionView
  451. 做图书的一个框架:https://github.com/Simbul/baker
  452. 项目内文档:https://github.com/tomaz/appledoc?source=c
  453. 抽屉导航:https://github.com/Inferis/ViewDeck
  454. iOS的url router :https://github.com/gaosboy/urlmanager
  455. https://github.com/usepropeller/routable-ios
  456. https://github.com/jverkoey/sockit
  457. 照片墙:https://github.com/gmoledina/GMGridView
  458. collectionview:https://github.com/steipete/PSTCollectionView
  459. 自动更新类:https://github.com/lexrus/LTUpdate
  460. 官网蝴蝶的OpenGL应用:https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITabBar_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40007521-CH3-SW4
  461. 开机密码锁:https://github.com/aporat/KKPasscodeLock
  462. 视频播放器:https://github.com/blizzard-op/VideoPlayerKit
  463. 音频播放完整客户端:https://github.com/kstenerud/ObjectAL-for-iPhone
  464. 豆瓣音频播放:https://github.com/douban/DOUAudioStreamer ❤❤❤❤❤
  465. 掉渣天的音频播放流:https://github.com/alexbw/novocaine
  466. AudioEngine:https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine 1000+❤
  467. 滑动的自定义的SegmentedControl控件:https://github.com/samvermette/SVSegmentedControl
  468. 自定义的segmented:https://github.com/HeshamMegid/HMSegmentedControl
  469. 类似swipelist的左右滑动的cell:https://github.com/alikaragoz/MCSwipeTableViewCell ❤❤❤❤❤
  470. 扩展1:https://github.com/soffes/sstoolkit ❤❤❤❤
  471. 扩展2:(存用户密码):https://github.com/soffes/sskeychain ❤❤❤❤
  472. scrollview自动滚动:https://github.com/shanegao/SGFocusImageFrame
  473. scrollview左右滑动,渐隐渐出:https://github.com/park0ur/Path-Intro-iPhone
  474. scrollview滑动条变细:https://github.com/r-plus/ScrollThindicator
  475. 弹窗层:https://github.com/martinjuhasz/MJPopupViewController ❤❤❤❤❤
  476. tableview下拉图片放大:https://github.com/hunk/TwProfile
  477. 选取iPod库播放音乐:https://github.com/gangverk/GVMusicPlayerController
  478. UIView动画:https://github.com/neror/ftutils
  479. 类似clear的超强动画cell:https://github.com/mystcolor/JTGestureBasedTableViewDemo
  480. 网易新闻背景图浮动:https://github.com/kenshin03/Home-For-iOS
  481. 仿网易,新浪的push效果,带有阴影:1)http://code4app.com/ios/%E8%A7%86%E5%9B%BE%E5%88%87%E6%8D%A2%E5%A4%A7%E5%B0%8F%E6%B8%90%E5%8F%98%E6%95%88%E6%9E%9C/5124399a6803fae82c000000
  482. 2)https://github.com/vinqon/MultiLayerNavigation
  483. 3)https://github.com/chisj/EuPopDemo
  484. ❤❤❤❤❤实现原理:http://mobile1.riaos.com/?p=2025414❤❤❤❤❤
  485. 新浪微博和朋友圈的图片浏览方式:
  486. 1)https://github.com/Seitk/FB-Gallery
  487. 2)https://github.com/jimneylee/SinaMBlogNimbus
  488. coretext 运用:https://github.com/akosma/CoreTextWrapper
  489. N多自定义组件:https://github.com/boctor/idev-recipes ❤❤❤❤❤❤
  490. 可以换图片的pageControl:https://github.com/Spaceman-Labs/SMPageControl
  491. 瀑布流:https://github.com/ptshih/PSCollectionView
  492. iOS7的扁平UI:https://github.com/Grouper/FlatUIKit
  493. 产品引导view:https://github.com/123nobody/WZGuideViewController
  494. 类似safari的页面浏览:https://github.com/100grams/HGPageScrollView❤❤❤❤❤❤
  495. 正则匹配UIView :https://github.com/KayK/RegexHighlightView❤❤❤❤❤❤❤❤❤❤❤❤
  496. 加密措施:https://github.com/dev5tec/FBEncryptor
  497. https://github.com/mayurbirari/AES256AndBase64
  498. 自增长的键盘:https://github.com/HansPinckaers/GrowingTextView
  499. 自定义的map Annotation :https://github.com/grgcombs/MultiRowCalloutAnnotationView
  500. 超屌的3d画面:https://github.com/nicklockwood/iCarousel❤❤❤❤❤❤❤❤❤❤❤❤
  501. 上拉刷新 : https://github.com/dbsGen/SlimeRefresh
  502. 翻页效果:https://github.com/brow/leaves
  503. 类似maps的半截翻页:https://github.com/FairfaxMobile/FDCurlViewControl
  504. 弹窗:https://github.com/martinjuhasz/MJPopupViewController
  505. 对话框:https://github.com/jessesquires/MessagesTableViewController
  506. pagecurl的翻页效果:http://www.cocoachina.com/bbs/read.php?tid=11856&keyword=%B5%D8%CD%BC
  507. 二维码:http://www.cocoachina.com/applenews/devnews/2013/0104/5462.html
  508. 自定义的annotation(1):https://github.com/applidium/ADClusterMapView
  509. 自定义的annotation(2):http://code4app.com/ios/Customized-Complex-Map-Annotation/4f67f4f86803fa843f000002#osc
  510. 类似国家地理的翻页:https://github.com/michaelhenry/MHNatGeoViewControllerTransition
  511. iOS开发私有库:https://github.com/kennytm/iphone-private-frameworks
  512. viewController的切换(从右边进来):https://github.com/steipete/PSStackedView ❤❤❤❤❤❤❤❤❤❤❤❤
  513. 安全存储用户名,密码等:https://github.com/granoff/Lockbox
  514. FormSheet的神器:https://github.com/m1entus/MZFormSheetController
  515. iOS中model类的写法:https://github.com/github/Mantle
  516. 相关介绍:https://github.com/blog/1299-mantle-a-model-framework-for-objective-c
  517. model类解析:https://github.com/nicklockwood/BaseModel
  518. basemodel解析:https://github.com/andrep/RMModelObject
  519. 蓝牙:https://github.com/xuanhuangyiqi/Anti-Lost
  520. model类比较好的库1):https://github.com/icanzilb/JSONModel
  521. model类比较好的库2):https://github.com/github/Mantle
  522. 原生App的远程调试工具包:https://github.com/square/PonyDebugger#remote-logging
  523. 将缓存存在磁盘:https://github.com/rs/SDURLCache
  524. path的欢迎页实现方式:https://github.com/icepat/ICETutorial ❤❤❤❤❤❤❤❤❤
  525. path的左下角菜单栏的同类实现方法:https://github.com/mattgemmell/MGTileMenu
  526. coredata的封装库:https://github.com/magicalpanda/MagicalRecord❤❤❤❤❤❤
  527. coredata的 sql使用方式:https://github.com/marcoarment/FCModel
  528. zip文件解压缩:https://github.com/soffes/ssziparchive
  529. 完美的图片category:https://github.com/Nyx0uf/NYXImagesKit
  530. 纵向的scrollview循环利用:https://github.com/andreyvit/SoloComponents-iOS
  531. UINavigationController的push可能导致错误的效果的补充:https://github.com/Plasma/BufferedNavigationController
  532. UIKit的分类:https://github.com/enormego/cocoa-helpers ❤❤❤❤❤ ❤❤❤❤❤
  533. 左右滚动的scrollview(类似网易读图):https://github.com/kejinlu/PagedFlowView
  534. webview控制器:https://github.com/samvermette/SVWebViewController
  535. 滑动帧动画:https://github.com/IFTTT/JazzHands ❤❤❤❤❤
  536. iOS6的水滴下拉刷新:https://github.com/Sephiroth87/ODRefreshControl
  537. 微信下拉显示logo:https://github.com/gluttony/RevealLogo
  538. 支付宝的锁屏界面:https://github.com/kejinlu/KKGestureLockView
  539. status bar的离线loading效果:http://www.cocoachina.com/bbs/read.php?tid=99947&keyword=%CD%F8%D2%D7
  540. 模仿百度地图向下推的层:https://github.com/mariohahn/MHDismissModalView
  541. FileManager:https://github.com/nicklockwood/StandardPaths
  542. 下拉头图放大:https://github.com/cyndibaby905/TwitterCover
  543. 1)访网易的左右滑动的view:http://code4app.com/ios/%E4%BB%BF%E7%BD%91%E6%98%93%E6%96%B0%E9%97%BB%E7%9A%84%E6%BB%91%E5%8A%A8%E8%A7%86%E5%9B%BE%E5%B8%83%E5%B1%80/5255fbd96803fa8660000000
  544. 2)左右横向滑动:https://github.com/MugunthKumar/MKHorizMenuDemo
  545. tableview模仿path的时间表:https://github.com/kentnguyen/KNPathTableViewController
  546. 弹出层:https://github.com/50pixels/FPPopover
  547. 二维码登录:https://tiqr.org/
  548. 弹出层:https://github.com/UrbanApps/UAModalPanel
  549. Facebook paper中的图片左右移动实现:https://github.com/chroman/CRMotionView
  550. 横向滚动的tab1):https://github.com/pppoe/LightMenuBar
  551. 横向滚动的tab2):https://github.com/MugunthKumar/MKHorizMenuDemo
  552. 左右滑动的cell,有删除等功能:https://github.com/CEWendel/SWTableViewCell/
  553. 不同速度的scrollview,用于做启动介绍页:https://github.com/5sw/SWParallaxScrollView
  554. mattt写的解析html和xml的:https://github.com/mattt/Ono
  555. 通过服务器动态修改客户端逻辑:https://github.com/mmin18/WaxPatch
  556. routes,可以让按钮直接向点html的链接一样:https://github.com/joeldev/JLRoutes
  557. 像新浪微博一样的图片浏览viewcontroller:https://github.com/jaredsinclair/JTSImageViewController
  558. 像微信一样的search bar :https://github.com/fabiankr/TableViewSearchBar
  559. 图片浏览:https://github.com/EddyBorja/EBPhotoPages
  560. 左滑动或右滑动cell:https://github.com/modocache/MDCSwipeToChoose
  561. 类似iOS相册删除照片的动画效果:https://github.com/Ciechan/BCGenieEffect
  562. 扁平化的uibutton:https://github.com/barbosa/GBFlatButton
  563. 给app评分的组件1:https://github.com/nicklockwood/iRate
  564. 给app评分的组件2:https://github.com/arashpayan/appirater
  565. NSFileManager的封装:https://github.com/fabiocaccamo/FCFileManager
  566. paper的点击展开效果:https://github.com/hebertialmeida/HAPaperViewController
  567. 柱状图:https://github.com/honcheng/iOSPlot
  568. 点击titleview弹出下拉的menu:https://github.com/romaonthego/REMenu
  569. 自定义开场图:https://github.com/ealeksandrov/EAIntroView
  570. 让navbar跟着scrollview一起滚动:https://github.com/andreamazz/AMScrollingNavbar
  571. 跟相册相关的:https://github.com/B-Sides/ELCImagePickerController
  572. 更高效的显示地图上的大头针:https://github.com/choefele/CCHMapClusterController
  573. streaming的音频播放:https://github.com/douban/DOUAudioStreamer
  574. XMPP的使用:https://github.com/adow/Dollarss
  575. iOS7 mailbox的statusbar运用:https://github.com/simonholroyd/StatusBarTest
  576. 国家地理的页面切换动画:https://github.com/michaelhenry/MHNatGeoViewControllerTransition
  577. 引导页1:https://github.com/MatthewYork/MYBlurIntroductionView
  578. 引导页2:https://github.com/MatthewYork/iPhone-IntroductionTutorial
  579. 引导页3:https://github.com/ealeksandrov/EAIntroView
  580. iOS7的电话button: https://github.com/mrcrow/MRoundedButton
  581. 类似paper的导航抖动:https://github.com/andreamazz/AMWaveTransition
  582. 下拉填充满字体:https://github.com/d-ronnqvist/blogpost-codesample-PullToRefresh:
  583. gif播放 :https://github.com/Flipboard/FLAnimatedImage
  584. 视图切换:https://github.com/zoonooz/ZFDragableModalTransition
  585. 类似游戏的菜单按钮,点击伸缩:https://github.com/sendoa/QBKOverlayMenuView
  586. 模仿twitter的首页左右切换:https://github.com/duowan/TwitterPaggingViewer
  587. 下载器:https://github.com/thibaultCha/TCBlobDownload
  588. 网易新闻的离线下载bar:https://github.com/jaydee3/JDStatusBarNotification
  589. 图片剪切和拆剪:https://github.com/kishikawakatsumi/PEPhotoCropEditor
  590. 过度效果的status bar :https://github.com/nrj/AlphaGradientStatusBar
  591. Facebook’s paper的弹出层:https://github.com/UrbanApps/UAModalPanel
  592. Objective-C 和JavaScript 交互:https://github.com/marcuswestin/WebViewJavascriptBridge
  593. CollectionView in UITableViewCell:https://github.com/AshFurrow/AFTabledCollectionView
  594. popview(1):https://github.com/jmascia/KLCPopup
  595. popview(2)https://github.com/andreamazz/AMPopTip
  596. UICollectionView replacement of UITableView (添加上section):https://github.com/jamztang/CSStickyHeaderFlowLayout
  597. storekit: https://github.com/mattt/CargoBay
  598. ========================== UICollectionView相关===============
  599. https://github.com/bryceredd/RFQuiltLayout
  600. ==========================helper相关===============
  601. https://github.com/andrewroycarter/UIView-Helpers
  602. ==========================auto layout相关=======
  603. https://github.com/cloudkite/Masonry
  604. https://github.com/smileyborg/UIView-AutoLayout
  605. https://github.com/iMartinKiss/KeepLayout
  606. pinterst的下拉刷新填充满的效果:https://github.com/uzysjung/UzysCircularProgressPullToRefresh
  607. ==========================block相关=======================================
  608. https://github.com/jivadevoe/UIAlertView-Blocks
  609. https://github.com/pandamonia/BlocksKit ❤❤❤❤❤
  610. ==========================iOS7相关=======================================
  611. iOS7颜色类:https://github.com/claaslange/iOS7Colors
  612. iOS7:动态毛玻璃效果:https://github.com/alexdrone/ios-realtimeblur
  613. iOS7 blur侧边栏:https://github.com/rnystrom/RNFrostedSidebar
  614. iOS7 blur image:https://github.com/lukabernardi/LBBlurredImage
  615. iOS7 blur 效果:https://github.com/nicklockwood/FXBlurView
  616. iOS7的uialertview:https://github.com/alexanderjarvis/PXAlertView
  617. 边打字边出现标题:https://github.com/jverdi/JVFloatLabeledTextField
  618. 扁平化的segment:https://github.com/pepibumur/PPiFlatSegmentedControl
  619. iOS7视图切换炫酷效果:https://github.com/ColinEberhardt/VCTransitionsLibrary
  620. iOS7教学代码:https://github.com/ShinobiControls/iOS7-day-by-day
  621. iOS7风格的抽屉导航:https://github.com/monospacecollective/MSDynamicsDrawerViewController
  622. 颜色渐变的加载:https://github.com/nrj/GradientProgressView
  623. iOS7demo:https://github.com/shu223/iOS7-Sampler
  624. iOS正则分类:https://github.com/bendytree/Objective-C-RegEx-Categories
  625. iOS7侧边栏:https://github.com/romaonthego/RESideMenu
  626. iOS7侧边栏(覆在view上)https://github.com/romaonthego/REFrostedViewController
  627. iOS7库:https://github.com/youknowone/UI7Kit(可以让iOS5也有iOS7的样子)
  628. ===========================测试框架=====
  629. http://www.cocoachina.com/applenews/devnews/2013/1025/7242.html
  630. https://github.com/kif-framework/KIF

转载于:https://www.cnblogs.com/xiaofei76/p/5953969.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/609221
推荐阅读
相关标签
  

闽ICP备14008679号