MBProgressHUD(进展指示符库)
地址:https://github.com/jdg/MBProgressHUD
苹果的应用程序一般都会用一种优雅的,半透明的进度显示效果,不过这个API是不公开的,因此你要是用了,很可能被清除出AppStore。而 MBProgressHUD提供了一个替代方案,而且在用户角度上,实现的效果根本看不出和官方程序有什么差别。同时还提供了其他附加功能,比如虚拟进展 指示符,以及完成提示信息。整合到项目里也很容易,这里不细谈了。
ASIHttpRequest(HTTP Network库)
地址:http://allseeing-i.com/ASIHTTPRequest/
iPhone当然也有自己的HTTP Network API,那为什么要用ASIHttpRequest呢?因为官方的API简直跟话痨似的,太罗嗦了!ASIHttpRequest库*大的简化了网络通 信,提供更先进的工具,什么文件上传工具,重定向处理工具、验证工具、等等。只要你手头的东西跟HTTP有关,用这个*对能让你感觉道生活有美好!先看一 段代码就体会到了。
(void) loadAppDevMag
{
NSURL *url = [NSURL URLWithString:@”http://www.appdevmag.com”];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request startAsynchronous];
}
– (void)requestFinished:(ASIHTTPRequest *)request
{
// Use when fetching text data
NSString *responseString = [request responseString];
}
JSON Framework(JSON支持)
地址:http://stig.github.com/json-framework/
如果你做的应用和网站服务器有交互,那就得用到JSON了。但事实上,iOS平台的原生类库根本就不支持JSON,这就略犀利了吧?不过JSON框 架满足了你的所有需求,包括一个解析器将JSON字符串解析成对象;以及一个生成器从对象生成字符串。这个库根本就是太流行了,JSON提过很多次了,具 体特点就不多讲了,所谓“一段代码胜千言”,下面用一段代码演示一下吧。
// JSON string -> NSDictionary
NSString *jsonString = @”{\”foo\”: \”bar\”}”;
NSDictionary *dictionary = [jsonString JSONValue];
NSLog(@”Dictionary value for \”foo\” is \”%@\””, [dictionary objectForKey:@”foo”]);
// NSDictionary -> JSON string
NSString *newJsonString = [dictionary JSONRepresentation];
Flurry(详尽的使用统计)
地址:http://www.flurry.com/product/analytics/index.html
通过Furry你可以得到应用的用户人数,用户活跃度,用户来源等统计信息。但是他*厉害的地方是,你可以追踪应用本身的事件和错误记录,所有这些 数据都会在一个类似Google Analytics的界面上显示,这样就很容易掌握用户的行为和出现的问题。当然,这个星球上很多统计工具,但是这款是作者个人比较推崇的解决方案。
RegexKitLite(正则表达式支持)
地址:http://regexkit.sourceforge.net/RegexKitLite/
正则表达式大家都知道。但是iPhone SDK居然当他不存在?这怎么能忍啊!果断用RegexKitLite。虽然叫的是Lite,但是功能很full。示例代码。
// finds phone number in format nnn-nnn-nnnn
NSString *regEx = @”[0-9]{3}-[0-9]{3}-[0-9]{4}”;
for(NSString *match in [textView.text componentsMatchedByRegex:regEx]) {
NSLog(@”Phone number is %@”, match);
}
Facebook iOS SDK(Facebook API类库)
地址:https://github.com/facebook/facebook-ios-sdk
大体来讲就是iPhone上的Facebook login,完全支持Facebook Graph API和the older REST api。如果你的应用跟Facebook有关,相信我,用这个吧。
SDWebImage(简化网络图片处理)
地址:https://github.com/rs/SDWebImage
用SDWebImage调用网站上的图片,跟本地调用内置在应用包里的图片一样简单。操作也很简单,举例说明
[imageView setImageWithURL:[NSURL URLWithString:@”http://example.com/image.png”]];
类似的功能在Three20里也有,这个过会再说。相比而言,SDWebImage主要是提供一个小而精的简捷方便的解决方案
GData client(iPhone上所有Google相关服务的类库)
地址:http://code.google.com/p/gdata-objectivec-client/
名字就说明一切了。跟Google相关的,值得一提的是,这个项目很开放。有很多示例程序供下载。
CorePlot(2D图形绘图仪)
地址:http://code.google.com/p/core-plot/
CorePlot有很多解决方案将你的数据可视。,同时也会提供各种迷人的图形效果,比如棒状图、饼状图、线状图等等,在他们网站上也提供了大量的范例图形,很多股票价格应用,游戏分数,个人财务管理都在用。
Three20(通用iOS库)
地址:https://github.com/facebook/three20
Three20类库是Facebook自己做的,大而全是他*大的特色。把他整合到已有的项目中可能得费点周折,不过如果一开始你就用上了Three20,尤其是牵扯到很多web相关的项目的时候,你就能深刻体会到神马叫给力了。
KissXml——xml解析库
相关教程:http://www.iteye.com/topic/625849
http://sencho.blog.163.com/blog/static/83056228201151743110540/
很方便的一个xml解析器,支持Xpath查询。
skpsmtpmessage——Quick SMTP邮件发送
svn checkout http://skpsmtpmessage.googlecode.com/svn/trunk/ skpsmtpmessage-read-only
github: git clone https://github.com/kailoa/iphone-smtp.git
相关教程:http://disanji.net/2011/01/28/skpsmtpmessage-open-source-framework/
skpsmtpmessage 是由Skorpiostech, Inc.为我们带来的一个SMTP协议的开源实现,使用Objective-c 实现,iOS系统的项目可以直接调用。
zxing——二维码扫描库
支持条形码/二维码扫描的图形处理库,这是一个java库,在android上的功能比较完整。同时该库也支持ios,但只能支持二位条形码的扫描。
kal——iPhone日历控件
一个类似于ios系统默认日历开源日历库,支持添加事件,自定义日历样式等功能。
shareKit——分享库
相关demo:http://www.cocoachina.com/bbs/read.php?tid-71760.html
分享到开心,豆瓣,腾讯,新浪微博的api所用到的强大的分享库。
FMDatabase——SQLite的Objective-C封装
是SQLite的C API對初學者來說實在太麻煩太瑣碎,難度太高。FMDB說穿了其實只是把C API包裝成簡單易用的Objective-C类。對于SQLite初學者來說,大大減低了上手的難度。有了FMDB,寫程式時只要專心在SQLite的語法上,而不用去理那堆有看沒有懂的C API,實在是件快樂的事情。
Panoramagl —— 720全景展示
Panorama viewer library for iPhone, iPad and iPod touch
iCarousel —— 效果很酷的分页排列
内容类似的页面需要并排列出来,供用户选择。iCarousel具有非常酷的3D效果,比如经典的CoverFlow, TimeMachine。另外还具有线性,圆柱状等其它效果。可用于图片选择,书籍选择,网页选择等。
EGOTableViewPullRefresh —— 下拉列表刷新
使用这个库,很容易就可以实现下拉刷新效果。微博,RSS阅读器之类的软件经常使用。
CMPopTipView —— 泡泡风格的提示界面
一个泡泡风格的提示框开源控件, 继承自UIView。iPad,iPhone通用。
HMGLTransitions —— 视图切换动画
提供一些UIView或UIViewController切换时候的3D动画效果。比如翻转,开门,撕纸等。
QuickDialog —— 表格风格的配置界面
在iphone, 通常使用UITableView来创建一些配置,登录界面,创建这些界面通常很机械很烦人。QuickDialog可以快速地在表格项中放置开关 On/Off控件、日期控件、Sliders、单选按钮编辑框等等。这样就不用使用低级的UITableView。
JMTabView —— 自定义标签栏和Tabbar
JMTabView是一个iOS自定义的标签栏开源控件,界面效果完全使用Core Graphics绘制,而没有用图片,所以内容很容易改为你需要的。
SBTableAlert —— 带表格视图的消息对话框
SBTableAlert对话框中提供了一种方式,在UIAlertView视图中包含了UITableView的效果,从而可以实现在UIAlertView中进行表格多选。使用简单。
EasyTableView —— 可水平或垂直滚动的TableView
原始的UITableView只可以垂直滚动。EasyTableView可以很方便的实现TableView的水平滚动, 并可重复实现用户自定义的View,就类似重复使用UITableViewCell, 这对于提高效率很有帮助。
MTStatusBarOverlay —— 在状态栏上显示自定义的View
iOS程序通常会在*上面出现一个状态栏。使用这个库,可以很方便的在状态栏上显示一些信息,比如下载进度等。
iOS-MagnifyingGlass ——IOS放大镜效果
可以选择放大镜的样式,和放大倍数
Openear—— 语音识别和TTS
提供了语音识别和Text-to-speach 的接口
Google Toolbox for Mac(GTM)—— 从不同Google项目收集的代码
包含各种的工具类。比如字符串的base64及二进制编码解码, 系统版本号比较, 路径查找等等。每个工具类都比较独立, 可单独抽出来使用。
SFHFKeychainUtils(scifihifi-iphone)—— 保存用户密码到keychain中
为了用户安全,可以使用钥匙串Keychain来保存用户密码。SFHFKeychainUtils封装了钥匙串的访问, 读写,使用起来很方便。
MKStoreKit —— 程序内购买
程序内购买的流程的封装。
GLGestureRecognizer——手势识别器
封装了多种手势的识别器,例如三角形,长方形,圆形,五角星形等
扫描wifi信息:
http://code.google.com/p/uwecaugmentedrealityproject/
http://code.google.com/p/iphone-wireless/
tcp/ip的通讯协议:
http://code.google.com/p/cocoaasyncsocket/
voip/sip:
http://code.google.com/p/siphon/
http://code.google.com/p/asterisk-voicemail-for-iphone/
http://code.google.com/p/voiphone/
jabber client
http://code.google.com/p/ichabber/
PLBlocks
http://code.google.com/p/plblocks/
image processing
http://code.google.com/p/simple-iphone-image-processing/
base64编码解码:http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/?r=87
xml解析:https://github.com/schwa/TouchXML
异步加载图片并缓存代码:http://www.markj.net/iphone-asynchronous-table-image/
iphone TTS:https://bitbucket.org/sfoster/iphone-tts
iphone cook book 源码:https://github.com/erica/iphone-3.0-cookbook-
OAuth认证: http://code.google.com/p/oauth/
http://code.google.com/p/oauthconsumer/
蓝牙协议栈:http://code.google.com/p/btstack/
语音识别:http://www.politepix.com/openears/
地球显示信息:http://code.google.com/p/whirlyglobe/
原文地址: http://www.cocoachina.com/iphonedev/toolthain/2011/1109/3480.html
如何用Facebook graphic api上传视频:
http://developers.facebook.com/blog/post/532/
对焦功能的实现:
http://www.clingmarks.com/?p=612
自定义圆角Switch按件:
https://github.com/domesticcatsoftware/DCRoundSwitch
弹出窗口For iphone and ipad:
https://github.com/chrismiles/CMPopTipView
KVO详解:
http://nachbaur.com/blog/back-to-basics-using-kvo
图片浏览:
https://github.com/bdewey/Pholio
Dropbox实例:
https://github.com/bdewey/dropvault
当地天气预报实例:
https://github.com/aspitz/WxHere
可伸缩的toolBar实例:
https://github.com/aspitz/ToolDrawer
app资源保护相关:
http://aptogo.co.uk/2010/07/protecting-resources/
cocos2d中也可用UIScrollView,UITableView,UIGestureRecognizers
https://github.com/jerrodputman/CCKit
http://www.tinytimgames.com/2011/08/05/introducing-cckit/
iOS文档导入导出:
http://mobiforge.com/developing/story/importing-exporting-documents-ios
CoreAnimation Demo:
https://github.com/bobmccune/Core-Animation-Demos
CoreAnimation Dev:
Part 1 – Frame By Frame Sprites With Core Animation
Part 2 – Space Time
Part 3 – Scrolling Hell
Part 4 – Parallax Scrolling
iOS jabber聊天应用开发:客户端开发
http://mobile.tutsplus.com/tutorials/iphone/building-a-jabber-client-for-ios-interface-setup/
http://mobile.tutsplus.com/tutorials/iphone/building-a-jabber-client-for-ios-custom-chat-view-and-emoticons/
iOS jabber聊天应用开发:服务器搭建
http://mobile.tutsplus.com/tutorials/iphone/building-a-jabber-client-for-ios-server-setup/
KeyChain封装,安全存数据:
http://developer.apple.com/library/mac/#documentation/Security/Conceptual/keychainServConcepts/02concepts/concepts.html
http://developer.apple.com/library/ios/#samplecode/GenericKeychain/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007797-Intro-DontLinkElementID_2
声音相关:
http://purplelilgirl.tumblr.com/post/9377269385/making-that-talking-app
http://dirac.dspdimension.com/Dirac3_Technology_Home_Page/Dirac3_Technology.html
弹珠游戏:
http://www.crowsoft.com.ar/wordpress/?p=19
spring board类UI:
https://github.com/rigoneri/myLauncher
MacOS&iOS upnp:
http://code.google.com/p/upnpx
ios block learn:
http://ios-blog.co.uk/iphone-development-tutorials/programming-with-blocks-an-overview/
https://github.com/zwaldowski/BlocksKit
弹出框中输入用户名与密码:
https://github.com/enormego/EGOTextFieldAlertView
jailbreak iphone发送sms:
http://code.google.com/p/iphone-sms/
搜索itune里app的url scheme:
https://github.com/Zwapp/schemes-scanner
横竖屏切换自动调整位置:
https://github.com/michaeltyson/TPMultiLayoutViewController
键盘出现与消失view自动移动避免遮挡:
https://github.com/michaeltyson/TPKeyboardAvoiding
http://atastypixel.com/blog/a-drop-in-universal-solution-for-moving-text-fields-out-of-the-way-of-the-keyboard/
iOS类似firebug的web调试工具:
http://phonegap.github.com/weinre/
一个UI开源库tapkulibrary,集成了calendar,coverflow
https://github.com/devinross/tapkulibrary
Tapku: An Amazing Open Source iOS Interface Library
多列的TableView
https://github.com/Xenofex/MultiColumnTableViewForiOS
mac的一个桌面程序,开源的
http://homepage.mac.com/nathan_day/pages/popup_dock.xml
PSTreeGraph for iPad
https://github.com/epreston/PSTreeGraph
文件预览like QLPreviewController
https://github.com/rob-brown/RBFilePreviewer
Interface Builder中用自定义字体解决方案
https://github.com/0xced/FontReplacer
有shader的UILabe
https://github.com/nicklockwood/FXLabel
GCD学习
Cocoa Touch Tutorial: Using Grand Central Dispatch for Asynchronous Table View Cells
http://www.raywenderlich.com/4295/multithreading-and-grand-central-dispatch-on-ios-for-beginners-tutorial
https://github.com/SlaunchaMan/GCDExample
让UITableView中有search功能教程
How To Search Option Enable In TableView In iPhone
iPad阅读器开发
http://mobile.tutsplus.com/tutorials/iphone/building-an-ipad-reader-for-war-of-the-worlds/
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-using-a-slider-to-scrub-a-pdf-reader/
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-adding-a-table-of-contents-to-an-ipad-reader/
ipad UI 24个免费资源
http://www.cocoachina.com/applenews/devnews/2011/0915/3237.html
TableView的扩展
https://github.com/OliverLetterer/UIExpandableTableView
Orge3D for iOS
http://code.google.com/p/gamekit/
http://www.tonybhimani.com/2011/07/09/ogre3d-sdk-1-7-3-for-apple-iphone-ios-howto/
文档比Three20更全的类Three20库
https://github.com/jverkoey/nimbus
iOS Boilerplate一个库集合,方便开发
http://iosboilerplate.com/
https://github.com/gimenete/iOS-boilerplate
openCV for iOS
http://code.google.com/p/edgy-camera-ios/
https://github.com/BloodAxe/opencv-ios-template-project
https://github.com/BloodAxe/OpenCV-iOS-build-script
http://computer-vision-talks.com/2011/02/building-opencv-for-iphone-in-one-click/
http://computer-vision-talks.com/2011/01/using-opencv-in-objective-c-code/
http://computer-vision-talks.com/2011/08/a-complete-ios-opencv-sample-project/
PageCurl for iOS
https://github.com/xissburg/XBPageCurl
https://github.com/raweng/FlipView
https://github.com/Split82/HMGLTransitions
http://api.mutado.com/mobile/paperstack/
iOS PDF实例
http://www.cocoachina.com/bbs/read.php?tid=75173
https://github.com/vfr/Reader
Core Animation
http://nachbaur.com/blog/core-animation-part-1
http://nachbaur.com/blog/core-animation-part-2
http://nachbaur.com/blog/core-animation-part-3
http://nachbaur.com/blog/core-animation-part-4
Core Data注意的地方
http://nachbaur.com/blog/smarter-core-data
http://iphonedevelopment.blogspot.com/2009/09/core-data-migration-problems.html
GCD
http://nachbaur.com/blog/using-gcd-and-blocks-effectively
http://deusty.blogspot.com/2011/01/multi-core-ios-devices-are-coming-are.html
MKMapView zoom level
http://troybrant.net/blog/2010/01/mkmapview-and-zoom-levels-a-visual-guide/
http://troybrant.net/blog/2010/01/set-the-zoom-level-of-an-mkmapview/
HTML parser
Taming HTML Parsing with libxml (1)
https://github.com/topfunky/hpple
https://github.com/zootreeves/Objective-C-HMTL-Parser
openGLES
http://www.ityran.com/portal.php
Charts绘制开源库
http://code.google.com/p/core-plot/
https://github.com/ReetuRaj/MIMChart-Library 说明文档
apple 私有api文档
http://hexorcist.com/private_frameworks/html/main.html
类safari的切换页面库
https://github.com/100grams/HGPageScrollView
自定义Slider组件
https://github.com/buildmobile/iosrangeslider
iOS Range Slider Part 1
iOS Range Slider Part 2
一些自定义组件:
自定义UIAlertView
自定义BadgeView
自定义数字键盘
QR Encoder二维码识别
https://github.com/jverkoey/ObjQREncoder
xml解析库
https://github.com/ZaBlanc/RaptureXML
wapper map for iOS
https://github.com/yinkou/OCMapView
iOS unitity
https://github.com/ZaBlanc/iBoost
https://github.com/escoz/QuickDialog/
socket
http://code.google.com/p/cocoaasyncsocket/
custom camera view
https://github.com/pmark/Helpful-iPhone-Utilities
http://www.codza.com/custom-uiimagepickercontroller-camera-view
本地天气demo
http://www.cocoachina.com/bbs/read.php?tid-72558-fpage-3.html
浏览器飞行动画
http://www.cocoachina.com/downloads/video/2011/1002/3313.html
切换动画demo
http://www.cocoachina.com/bbs/read.php?tid-76431-page-1.html
Automatic Reference Counting
http://www.mikeash.com/pyblog/friday-qa-2011-09-30-automatic-reference-counting.html
voip for ios development
http://trac.pjsip.org/repos/wiki/Getting-Started/iPhone
http://www.piemontewireless.net/PJSip155_and_iPhoneSDK312
http://code.google.com/p/siphon/
图像处理
http://www.cocoachina.com/downloads/code/2011/1009/3335.html
脚本自动生成push notification所需证书
https://github.com/jprichardson/GeneratePushCerts
自定义ActivityIndicator
https://github.com/hezi/HZActivityIndicatorView
开源库for ios
boost for iphone
ffmpeg for iphone
opencore amr for iphone
iOS网络相关
bonjour