github优秀开源项目大全-iOS

前言
本文旨在搜集github上优秀的开源项目

本文搜集的项目都是用于iOS开发

本文会持续更新…

完整客户端
ioctocat

github的iOS客户端,目前开源代码是V1版本,V2版本在appstore上可以下载
ChatSecure-iOS

使用XMPP协议的IM开源软件,很强大,在appstore上可以下载
SegmentFault

SegmentFault的官方iOS客户端
OSChina-iOS

开源中国社区oschina的官方iPhone客户端,appstore已上线。早期地址在github上,后来迁移到OSChina自己的代码托管平台.
FFCalendar

实现了日历的基本功能,目前只支持iPad版本


wh-app-ios

美国白宫(WhiteHouse)的官方app,听起来很高大上哈
ruby-china-for-ios

Ruby China的官方app
cheddar-ios

一款不错的日程管理软件,Appstore上能下载


twitterfon

第三方twitter客户端,不过作者上传后至今5年了都没更新过。。。
viewfinder

移动支付公司Square在其工程博客上宣布,基于Apache 2.0许可协议,开源了于去年12月初收购的照片管理和共享应用Viewfinder,包括Viewfinder服务器、Android和iOS应用在内的25万行代码已托管到GitHub上。 对此,Square工程师Peter Mattis在工程博客上表示,Square之所以考虑到将Viewfinder的完整代码公之于众,是希望能够与人方便,让开发者在应用开发过程中可以加以利用或作为参考。尽管Square团队并没有为Viewfinder提供技术支持,也没有进行Bug修复,但此举还是赢得了满堂喝彩一致点赞。
Viewfinder包含了许多非常有趣的代码,对于开发者来说,绝对是大大的Surprise,主要如下:
. Viewfinder服务器提供了一个拥有各种Amazon DynamoDB索引选项的结构化数据库架构。. 服务器还提供了数据库和协议层版本控制支持。. 在本地元数据存储方面,Viewfinder客户端使用LevelDB,相比CoreData,更易于使用,也相当便捷。. 内置可直接运行于移动设备上的全文本搜索引擎,支持联系人和图片搜索。. 使用GYP生成Xcode项目文件和Android构建文件。. 支持C++模板元编程,可使用C++11可变参数模板根据C++方法自动计算Java方法签名。

该段介绍出自这里
viewfinder使用GYP生成Xcode的工程文件,生成方式如下:
首先要安装GYP,执行以下步骤:
1234

$ svn checkout http://gyp.googlecode.com/svn/trunk/ gyp-read-only $ cd gyp-read-only $ ./setup.py build $ sudo ./setup.py install

安装成功以后,再进入到clone下来的viewfineder源码目录,执行:
12

$ cd viewfinder/clients/ios$ gyp --depth=. -DOS=ios -Iglobals.gypi ViewfinderGyp.gyp

这样就能成功生成Xcode工程文件了,不过需要通过ViewfinderGyp.xcodeproj
文件打开工程。
HackerNews

Hacker News
的iPhone客户端


AmericanEnglish

iOS资深开发者罗朝辉做的一款应用,《美式英语》的iPhone版本


FormosaWeibo

使用新浪微博开放平台做的微博客户端,做工略显粗糙,作者也有几个月没更新了。
RSSRead

AppStore上线产品,中文名称已阅
。一个iOS设备上的RSS/Atom阅读器,刚成立的项目,还有很多有待完善的地方。


Xcode插件
cocoapods-xcode-plugin

用于在Xcode中管理CocoaPods依赖库


XAlign

方便实现代码对其功能,使代码风格统一


XcodeBoost

一个辅助代码编辑插件。支持高亮选中、批量选中方法和方法名、根据选中的方法批量生成方法声明、高亮正则搜索等功能。
Injection for Xcode

一个神奇的Xcode 插件,能让应用在运行的时候做出的小的改变立马体现效果,而不需要重新编译。。。
Alcatraz

以图形化界面管理Xcode插件的插件。


KSImageNamed-Xcode

当输入[NSImage imageNamed:
或者[UIImage imageNamed:
时,会自动补全工程中可用的图片名称,同时能提供选中图片的预览。


XToDo

能以图形界面列表的形式列出代码中添加了TODO
,FIXME
,???
,!!!!
标识的项目,方便解决软件中备注的未解决问题。另外,能查找的还不只上述四种标识,用户可以自己添加想支持的标识。


CodePilot

快速查找工程中的文件、代码等资源,和Xcode5自带的Open Quickly
功能相似。


VVDocumenter-Xcode

提供了为代码增加注视的最快捷方式,是我使用频率最高的插件,猫神出品。


工具
Xtrace

能详细打印出一个某个方法被调用的堆栈,方便调试时定位问题


RMConnecter

在上传AppStore时需要填写app的描述信息,此软件能很方便的填写这些信息。


xctool

facebook出的自动编译工具,不像xcodebuild,它能够整洁的打印出日志


iOS-Universal-Framework

用于生成兼容armv6/armv7/i386 framework
的Xcode工程模版:


UYLPasswordManager

对访问iOS Keychain的封装库。
sqlcipher

这是目前我已知的唯一一个支持对SQLite加密的免费开源库,对应的有收费版本。本开源库实现了对SQLite开源免费版本中未实现的加密接口,同时做了一定的扩展。使用的是256位AES加密方式。
强烈推荐!
Xcode-Snippets

AFNetworking
作者、mattt大神开源的常用Xcode代码片段。
开发框架
pop

facebook那神奇的动画引擎,你懂得。。。

pop
pop

KVOController

facebook出品,基于Cocoa的KVO开发,提供简单地使用方式,同时也是线程安全的。
Aspects

通过method swizzling技术,能够在一个类的现有方法执行之前或之后附加一个代码片段(以block方式),能极大的方便我们调试。
PSPDFKit

十分强大的PDF开发框架,有异步加载、预览、编辑、加标注等很多功能
TEAChart

使用简单,功能强大的图表工具

TEAChart
TEAChart

SearchCoreTest

一个联系人搜索库,支持的搜索方式包括:用户名汉字、拼音及模糊搜索,号码搜索,最重要的是支持T9搜索,做过通讯录类应用的同学都懂的。我在项目里用过,很赞。
XMPPFramework

应该是XMPP协议Objective-C实现的最好版本,小型开发者想做IM应用的好选择,使用起来也很方便。
JSQMessagesViewController

一个通用聊天界面框架,效果不错,感谢作者的开源。这个框架后来被国内某无耻程序员修改成MessageDisplayKit,大有据为己有之势。


vTeam

一个开发者积累多年的开发框架,值得看看。
AGGeometryKit

几何图形框架,把AGGeometryKit和POP结合起来使用,可实现非常棒的动态和动画。
IMQuickSearch

IMQuickSearch是一个快速搜索工具,可以过滤包含多种自定义NSObject类的NSArray。


iOSPlot

新加坡开发者honcheng
实现的图标制作框架,支持折线图、饼状图等。


自定义view
DZTableView

仿照UITableView机制自己实现的一个自定义tableview,带有详细的说明文档
AMWaveTransition

很炫的带有表格的视图控制器切换效果,点击每个栏目会有限带有波浪效果的信息展示,类似于Facebook Paper

AMWaveTransition
AMWaveTransition

Shimmer

又是facebook出的,可以让view展示波光粼粼的效果

Shimmer
Shimmer

PSTCollectionView

仿照系统的UICollectionView的API实现的collection view,支持ARC和iOS4.3+系统,可用于替代只能从iOS6开始支持的UICollectionView
JDStatusBarNotification

各种形式在状态栏展示信息,包括提示、进度等,展示格式和动画方式也有好几种。下图只是以静态方式展示其效果,更多详情请点击链接查看。

JDStatusBarNotification
JDStatusBarNotification

SphereView

一个球形3D标签,能够放大、缩小、拖动、点击、自动旋转。效果挺玄的,就是感觉有点卡,还有一定的优化空间。下图截了一个静态图片:

SphereView
SphereView

RESideMenu

iOS7风格的侧滑菜单,支持左右双向侧滑:

RESideMenu
RESideMenu

GCDiscreetNotificationView

一种在view的顶部弹出并会自动消失的通知类view,是toast的一种变形。目前开源中国的项目正在用该view。
CLProgressHUD

大麦网iOS客户端工程师开源的一个HUD view,


REMenu

自定义的下拉菜单


SWParallaxScrollView

能够实现在多个图层上以不同速度滑动的自定义ScrollView,可用于做软件启动时的help界面:


Vurig-Calendar

自定义的日历,界面很简洁,月份切换时动画效果也不错。


M80AttributedLabel

功能较齐全的attributed lable,支持attributed string和图片、链接、控件的混排。
BCMeshTransformView

实现了相当炫的拉幕式的界面切换效果,其灵感来自CALayer的私有属性meshTransform
以及和其对应的CAMeshTransform


TwitterCover

新浪微博开发者仿照Twitter的iOS客户端中的效果实现的向下拉动滚动视图,视图顶端的图片会随着下拉而变大,并且带有模糊的效果。


THContactPicker

模仿系统邮件应用实现的联系人选择界面。


DKCircleButton

一个扁平化的,能带声波效果的按钮。


PaperFold-for-iOS

新加坡开发者honcheng
实现的折纸效果的界面切换,适合做电子书阅读类应用。


RTLabel

新加坡开发者honcheng
多媒体显示view,支持html语法,应用非常广泛。


转帖至http://www.douban.com/note/276160185/youtube下载神器:https://github.com/rg3/youtube-dlvim插件:https://github.com/Valloric/YouCompleteMevim插件配置:https://github.com/spf13/spf13-vim————————Mac完整项目—————电台:https://github.com/myoula/sostart————————iOS完整项目————————
豆瓣相册 https://github.com/TonnyTao/DoubanAlbum
voa在线英语 https://github.com/cubewang/NewsReader3.电竞第一视角 https://github.com/cubewang/GameDaily
开源中国的iOS客户端 https://github.com/oschina/iphone-app
很优雅的一些组件 https://github.com/sobri909/MGBox2
ios控件学习:https://github.com/iimgal/StudyiOS?source=c
reader :https://github.com/vfr/Reader
git客户端: https://github.com/dennisreimann/ioctocat
speakEnglish:https://github.com/cubewang/SpeakEnglish
新闻阅读 :https://github.com/samuelclay/NewsBlur
last.fm:https://github.com/c99koder/lastfm-iphone
LBS游戏:https://github.com/Kjuly/iPokeMon
ThatInbox 是iOS平台上一个免费开源的Email 客户端:https://github.com/Ink/ThatInbox
ThatCloud是一个免费开源的iOS app. 允许你访问、查看以及使用你在网上存储的内容. 可以很好地帮你完成工作:https://github.com/Ink/ThatCloud
ThatPhoto是使用了Ink Mobile Framework框架来连接到其他iOS 应用程序. 你可以用它来编辑和管理照片:https://github.com/Ink/ThatPhoto
ThatPDF一个开源的. 用来阅读、签名和注解PDF 文档的工具:https://github.com/Ink/ThatPDF
xmpp聊天系统:https://github.com/chrisballinger/Off-the-Record-iOS
对口袋NCE有用的app:https://github.com/imtiger/HappyEnglish
一个像Instagram那样的图片分享社区App:https://github.com/ParsePlatform/Anypic
黑客阅读:https://github.com/mmackh/Hacker-News-for-iOS
画图软件:https://github.com/sprang/Brushes
APN软件:https://github.com/lexrus/APN.iOS
Sol的天气app:https://github.com/comyarzaheri/Sol
货币转换:https://github.com/nicklockwood/Concurrency
来电归属地查询的软件(不能上架):https://github.com/Quotation/WhoCall
Mogo iOS 客户端:https://github.com/jurre/Mogo-iOS
https://github.com/AshFurrow/C-41
使用XMPP协议的IM开源软件:https://github.com/chrisballinger/ChatSecure-iOS
WWDC:https://github.com/indragiek/WWDC-2014
移动支付公司 Square 将去年收购的照片应用 Viewfinder 开源了. 包含服务端、iOS 和 Android 应用代码:https://github.com/viewfinderco/viewfinder
圣经小助手 :https://github.com/nixzhu/Bible-Assistant
已阅 :https://github.com/ming1016/RSSRead
美国白宫APP:https://github.com/WhiteHouse/wh-app-ios
Ruby for China: https://github.com/ruby-china/ruby-china-for-ios
breadwallet iOS bitcoin wallet :https://github.com/voisine/breadwallet
品趣:https://github.com/novel-design/novel-design
懒人笔记:https://github.com/liaojinxing/Voice2Note
Doppio :https://github.com/chroman/Doppio
parse开源了:https://github.com/ParsePlatform/f8DeveloperConferenceApp
The Oakland Post iOS App(http://www.oaklandpostonline.com) https://github.com/aclissold/The-Oakland-Post
GreatReader PDF阅读:https://github.com/semweb/GreatReader
Signal for iOS:https://github.com/WhisperSystems/Signal-iOS
Hacker News Client:https://github.com/bonzoq/hniosreader————————开源项目的协议———————网易新闻的开源协议: http://m.163.com/special/newsclient/ios_libraries.html————————组件————————自定义tabbar(1)的: https://github.com/i300/TweetBotTabBar自定义tabbar(2)和上拉刷新:http://www.cocoachina.com/bbs/read.php?tid=62061&keyword=tabbar自定义tabbar(3):https://github.com/jinthagerman/JBTabBarController类似instagram的tabbar:https://github.com/boctor/idev-recipes/tree/master/CustomTabBarNotificationcoretext:https://github.com/Cocoanetics/DTCoreText图片延时加载:http://developer.apple.com/library/ios/#samplecode/LazyTableImages网络请求:https://github.com/pokeb/asi-http-requesthttps://github.com/AFNetworking/AFNetworkingJson解析:https://github.com/johnezang/JSONKit图片异步加载:https://github.com/rs/SDWebImage?source=c瀑布流1):https://github.com/aceisScope/WaterflowView瀑布流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瀑布流3):https://github.com/chiahsien/CHTCollectionViewWaterfallLayout瀑布流4):http://www.cocoachina.com/bbs/read.php?tid=94851&keyword=%C6%D9%B2%BC%C1%F7瀑布流5):https://github.com/ptshih/PSCollectionView瀑布流6):http://www.cocoachina.com/bbs/search.php?ss=index#submit 搜索:瀑布流瀑布流7):https://github.com/steipete/PSTCollectionView做图书的一个框架:https://github.com/Simbul/baker项目内文档:https://github.com/tomaz/appledoc?source=c抽屉导航:https://github.com/Inferis/ViewDeckiOS的url router :https://github.com/gaosboy/urlmanagerhttps://github.com/usepropeller/routable-ioshttps://github.com/jverkoey/sockit照片墙:https://github.com/gmoledina/GMGridViewcollectionview:https://github.com/steipete/PSTCollectionView自动更新类:https://github.com/lexrus/LTUpdate官网蝴蝶的OpenGL应用:https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITabBar_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40007521-CH3-SW4开机密码锁:https://github.com/aporat/KKPasscodeLock视频播放器:https://github.com/blizzard-op/VideoPlayerKit音频播放完整客户端:https://github.com/kstenerud/ObjectAL-for-iPhone豆瓣音频播放:https://github.com/douban/DOUAudioStreamer掉渣天的音频播放流:https://github.com/alexbw/novocaineAudioEngine:https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine滑动的自定义的SegmentedControl控件:https://github.com/samvermette/SVSegmentedControl自定义的segmented:https://github.com/HeshamMegid/HMSegmentedControl类似swipelist的左右滑动的cell:https://github.com/alikaragoz/MCSwipeTableViewCell扩展1:https://github.com/soffes/sstoolkit扩展2:(存用户密码):https://github.com/soffes/sskeychainscrollview自动滚动:https://github.com/shanegao/SGFocusImageFramescrollview左右滑动,渐隐渐出:https://github.com/park0ur/Path-Intro-iPhonescrollview滑动条变细:https://github.com/r-plus/ScrollThindicator弹窗层:https://github.com/martinjuhasz/MJPopupViewControllertableview下拉图片放大:https://github.com/hunk/TwProfile选取iPod库播放音乐:https://github.com/gangverk/GVMusicPlayerControllerUIView动画:https://github.com/neror/ftutils类似clear的超强动画cell:https://github.com/mystcolor/JTGestureBasedTableViewDemo网易新闻背景图浮动:https://github.com/kenshin03/Home-For-iOS仿网易,新浪的push效果,带有阴影:
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
https://github.com/vinqon/MultiLayerNavigation
https://github.com/chisj/EuPopDemo实现原理:http://mobile1.riaos.com/?p=2025414新浪微博和朋友圈的图片浏览方式:1)https://github.com/Seitk/FB-Gallery2)https://github.com/jimneylee/SinaMBlogNimbus
coretext 运用:https://github.com/akosma/CoreTextWrapperN多自定义组件:https://github.com/boctor/idev-recipes可以换图片的pageControl:https://github.com/Spaceman-Labs/SMPageControl瀑布流:https://github.com/ptshih/PSCollectionViewiOS7的扁平UI:https://github.com/Grouper/FlatUIKit产品引导view:https://github.com/123nobody/WZGuideViewController类似safari的页面浏览:https://github.com/100grams/HGPageScrollView正则匹配UIView :https://github.com/KayK/RegexHighlightView加密措施:https://github.com/dev5tec/FBEncryptorhttps://github.com/mayurbirari/AES256AndBase64自增长的键盘:https://github.com/HansPinckaers/GrowingTextView自定义的map Annotation :https://github.com/grgcombs/MultiRowCalloutAnnotationView超屌的3d画面:https://github.com/nicklockwood/iCarousel上拉刷新 : https://github.com/dbsGen/SlimeRefresh翻页效果:https://github.com/brow/leaves类似maps的半截翻页:https://github.com/FairfaxMobile/FDCurlViewControl弹窗:https://github.com/martinjuhasz/MJPopupViewController对话框:https://github.com/jessesquires/MessagesTableViewControllerpagecurl的翻页效果:http://www.cocoachina.com/bbs/read.php?tid=11856&keyword=%B5%D8%CD%BC二维码:http://www.cocoachina.com/applenews/devnews/2013/0104/5462.html自定义的annotation
https://github.com/applidium/ADClusterMapView
http://code4app.com/ios/Customized-Complex-Map-Annotation/4f67f4f86803fa843f000002#osc类似国家地理的翻页:https://github.com/michaelhenry/MHNatGeoViewControllerTransitioniOS开发私有库:https://github.com/kennytm/iphone-private-frameworksviewController的切换(从右边进来):https://github.com/steipete/PSStackedView安全存储用户名,密码等:https://github.com/granoff/LockboxFormSheet的神器:https://github.com/m1entus/MZFormSheetControlleriOS中model类的写法:https://github.com/github/Mantle相关介绍:https://github.com/blog/1299-mantle-a-model-framework-for-objective-cmodel类解析:https://github.com/nicklockwood/BaseModelbasemodel解析:https://github.com/andrep/RMModelObject蓝牙:https://github.com/xuanhuangyiqi/Anti-Lostmodel类比较好的库
https://github.com/icanzilb/JSONModel
https://github.com/github/Mantle原生App的远程调试工具包:https://github.com/square/PonyDebugger#remote-logging将缓存存在磁盘:https://github.com/rs/SDURLCachepath的欢迎页实现方式:https://github.com/icepat/ICETutorialpath的左下角菜单栏的同类实现方法:https://github.com/mattgemmell/MGTileMenucoredata的封装库:https://github.com/magicalpanda/MagicalRecordcoredata的 sql使用方式:https://github.com/marcoarment/FCModelzip文件解压缩:https://github.com/soffes/ssziparchive完美的图片category:https://github.com/Nyx0uf/NYXImagesKit纵向的scrollview循环利用:https://github.com/andreyvit/SoloComponents-iOSUINavigationController的push可能导致错误的效果的补充:https://github.com/Plasma/BufferedNavigationControllerUIKit的分类:https://github.com/enormego/cocoa-helpers左右滚动的scrollview(类似网易读图):https://github.com/kejinlu/PagedFlowViewwebview控制器:https://github.com/samvermette/SVWebViewController滑动帧动画:https://github.com/IFTTT/JazzHandsiOS6的水滴下拉刷新:https://github.com/Sephiroth87/ODRefreshControl微信下拉显示logo:https://github.com/gluttony/RevealLogo支付宝的锁屏界面:https://github.com/kejinlu/KKGestureLockViewstatus bar的离线loading效果:http://www.cocoachina.com/bbs/read.php?tid=99947&keyword=%CD%F8%D2%D7模仿百度地图向下推的层:https://github.com/mariohahn/MHDismissModalViewFileManager:https://github.com/nicklockwood/StandardPaths下拉头图放大:https://github.com/cyndibaby905/TwitterCover
访网易的左右滑动的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
左右横向滑动:https://github.com/MugunthKumar/MKHorizMenuDemotableview模仿path的时间表:https://github.com/kentnguyen/KNPathTableViewController弹出层:https://github.com/50pixels/FPPopover二维码登录:https://tiqr.org/弹出层:https://github.com/UrbanApps/UAModalPanelFacebook paper中的图片左右移动实现:https://github.com/chroman/CRMotionView横向滚动的tab
https://github.com/pppoe/LightMenuBar
https://github.com/MugunthKumar/MKHorizMenuDemo左右滑动的cell,有删除等功能:https://github.com/CEWendel/SWTableViewCell/不同速度的scrollview,用于做启动介绍页:https://github.com/5sw/SWParallaxScrollViewmattt写的解析html和xml的:https://github.com/mattt/Ono通过服务器动态修改客户端逻辑:https://github.com/mmin18/WaxPatchroutes,可以让按钮直接向点html的链接一样:https://github.com/joeldev/JLRoutes像新浪微博一样的图片浏览viewcontroller:https://github.com/jaredsinclair/JTSImageViewController像微信一样的search bar :https://github.com/fabiankr/TableViewSearchBar图片浏览:https://github.com/EddyBorja/EBPhotoPages左滑动或右滑动cell:https://github.com/modocache/MDCSwipeToChoose类似iOS相册删除照片的动画效果:https://github.com/Ciechan/BCGenieEffect扁平化的uibutton:https://github.com/barbosa/GBFlatButton给app评分的组件1:https://github.com/nicklockwood/iRate给app评分的组件2:https://github.com/arashpayan/appiraterNSFileManager的封装:https://github.com/fabiocaccamo/FCFileManagerpaper的点击展开效果:https://github.com/hebertialmeida/HAPaperViewController柱状图:https://github.com/honcheng/iOSPlot点击titleview弹出下拉的menu:https://github.com/romaonthego/REMenu自定义开场图:https://github.com/ealeksandrov/EAIntroView让navbar跟着scrollview一起滚动:https://github.com/andreamazz/AMScrollingNavbar跟相册相关的:https://github.com/B-Sides/ELCImagePickerController更高效的显示地图上的大头针:https://github.com/choefele/CCHMapClusterControllerstreaming的音频播放:https://github.com/douban/DOUAudioStreamerXMPP的使用:https://github.com/adow/DollarssiOS7 mailbox的statusbar运用:https://github.com/simonholroyd/StatusBarTest国家地理的页面切换动画:https://github.com/michaelhenry/MHNatGeoViewControllerTransition引导页1:https://github.com/MatthewYork/MYBlurIntroductionView引导页2:https://github.com/MatthewYork/iPhone-IntroductionTutorial引导页3:https://github.com/ealeksandrov/EAIntroViewiOS7的电话button: https://github.com/mrcrow/MRoundedButton类似paper的导航抖动:https://github.com/andreamazz/AMWaveTransition下拉填充满字体:https://github.com/d-ronnqvist/blogpost-codesample-PullToRefreshgif播放 :https://github.com/Flipboard/FLAnimatedImage视图切换:https://github.com/zoonooz/ZFDragableModalTransition类似游戏的菜单按钮,点击伸缩:https://github.com/sendoa/QBKOverlayMenuView模仿twitter的首页左右切换:https://github.com/duowan/TwitterPaggingViewer下载器:https://github.com/thibaultCha/TCBlobDownload网易新闻的离线下载bar:https://github.com/jaydee3/JDStatusBarNotification图片剪切和拆剪:https://github.com/kishikawakatsumi/PEPhotoCropEditor过度效果的status bar :https://github.com/nrj/AlphaGradientStatusBarFacebook’s paper的弹出层:https://github.com/UrbanApps/UAModalPanelObjective-C 和JavaScript 交互:https://github.com/marcuswestin/WebViewJavascriptBridgeCollectionView in UITableViewCell:https://github.com/AshFurrow/AFTabledCollectionViewpopview
https://github.com/jmascia/KLCPopup
https://github.com/andreamazz/AMPopTipUICollectionView replacement of UITableView (添加上section):https://github.com/jamztang/CSStickyHeaderFlowLayoutstorekit: https://github.com/mattt/CargoBay替换Apple的Reachability判断网络:https://github.com/tonymillion/Reachability搜索控件search:https://github.com/dzenbot/DZNPhotoPickerController========================== UICollectionView相关===============https://github.com/bryceredd/RFQuiltLayout==========================helper相关===============https://github.com/andrewroycarter/UIView-Helpers==========================auto layout相关=======https://github.com/cloudkite/Masonryhttps://github.com/smileyborg/UIView-AutoLayouthttps://github.com/iMartinKiss/KeepLayoutpinterst的下拉刷新填充满的效果:https://github.com/uzysjung/UzysCircularProgressPullToRefresh==========================block相关=======================================https://github.com/jivadevoe/UIAlertView-Blockshttps://github.com/pandamonia/BlocksKit==========================iOS7相关=======================================iOS7颜色类:https://github.com/claaslange/iOS7ColorsiOS7:动态毛玻璃效果:https://github.com/alexdrone/ios-realtimebluriOS7 blur侧边栏:https://github.com/rnystrom/RNFrostedSidebariOS7 blur image:https://github.com/lukabernardi/LBBlurredImageiOS7 blur 效果:https://github.com/nicklockwood/FXBlurViewiOS7的uialertview:https://github.com/alexanderjarvis/PXAlertView边打字边出现标题:https://github.com/jverdi/JVFloatLabeledTextField扁平化的segment:https://github.com/pepibumur/PPiFlatSegmentedControliOS7视图切换炫酷效果:https://github.com/ColinEberhardt/VCTransitionsLibraryiOS7教学代码:https://github.com/ShinobiControls/iOS7-day-by-dayiOS7风格的抽屉导航:https://github.com/monospacecollective/MSDynamicsDrawerViewController颜色渐变的加载:https://github.com/nrj/GradientProgressViewiOS7demo:https://github.com/shu223/iOS7-SampleriOS正则分类:https://github.com/bendytree/Objective-C-RegEx-CategoriesiOS7侧边栏:https://github.com/romaonthego/RESideMenuiOS7侧边栏(覆在view上)https://github.com/romaonthego/REFrostedViewControlleriOS7库:https://github.com/youknowone/UI7Kit(可以让iOS5也有iOS7的样子)===========================测试框架=====http://www.cocoachina.com/applenews/devnews/2013/1025/7242.htmlhttps://github.com/kif-framework/KIFmattt大神的发布程序:https://github.com/nomad/shenzhen

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 162,825评论 4 377
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 68,887评论 2 308
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 112,425评论 0 255
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,801评论 0 224
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 53,252评论 3 299
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 41,089评论 1 226
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 32,216评论 2 322
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 31,005评论 0 215
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,747评论 1 250
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,883评论 2 255
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,354评论 1 265
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,694评论 3 265
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,406评论 3 246
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,222评论 0 9
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,996评论 0 201
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 36,242评论 2 287
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 36,017评论 2 281

推荐阅读更多精彩内容