http://code.google.com/p/iphonecomic/source/browse/#svn/trunk%3Fstate%3Dclosed
http://code.google.com/p/weisms/downloads/list
动态画按钮 前进 后退
http://outerlevel.com/blog/2008/12/26/code-example-drawing-the-iphone-back-button/
地理定位改變世界的十種方式
各种图像操作
http://www.trembl.org/codec/tag/cgimageref/
http://stackoverflow.com/questions/2475450/extracting-images-from-a-pdf
存储OpenGL ES内容到相片簿
CGImageCreate
http://www.cocoadev.com/index.pl?BaseSixtyFour
#define SCREEN_METRIC_WIDTH 320
#define SCREEN_METRIC_HEIGHT 480
#define BMP_SIZE 320*480*3
#define BMP_HEADER_LENGTH 54
- (CGImageRef) GetImageData
{
unsigned char* pData=NULL;
int i = 0;
int bitsPerComponent = 8;
int bitsPerPixel = 24;
int bytesPerRow = 3 * SCREEN_METRIC_WIDTH;
[...]
Appstream
filemaker
AppsFire
http://www.weask.us/entry/clear-corners-rounded-rect-iphone-sdk
仿iPod系列Touch Wheel的控件
UIWebView响应Touch事件的方法(不用Private API, iOS4 Tested)
UIWebView 中点击链接,并获得链接的示例
Music Play in iPhoneOS4 source
How to image moved using Touch function in iPad
New iPhone app prototyping tool from Rex Xu: Apps-On
iPhone SDK: Resizing a UITableViewCell to Hold Variable Amounts of Text, Part 2 of
UIImage-Extensions for cutting, scaling, and rotating UIImages
《例学Symbian开发》
[未读的文章] In App Purchase无敌攻略
文本切页代码 http://www.cocoachina.com/bbs/read.php?tid-7831.html
Experimental Database Class
Custom callout bubble to MKMapView in iPhone
http://www.uxguide.net/wiki/iphone:Segmented-controls
http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/
http://www.ioncannon.net/
http://www.mobisoftinfotech.com/blog/
http://www.jakeri.net/category/iphone/
http://www.gibsontang.com/
class dump
http://www.codethecode.com/projects/class-dump/
How To Use the Three20 Photo Viewer
http://github.com/enormego
拖动项目
http://www.cocoachina.com/bbs/read.php?tid-3034-fpage-2.html
tabbar 颜色修改
http://www.ieliwb.com/thanks-cocoachina-ru-developers/
保存当前view到相册
page
http://www.iphonedevsdk.com/forum/iphone-sdk-development/18876-paging-pagination-load-more-uitableview.html
cool 菜单效果
http://www.cocoachina.com/bbs/read.php?tid=27556
more
http://devblog.wm-innovations.com/2010/04/22/adding-a-load-more-cell-in-uitableview/
getglue
字符编码
http://stackoverflow.com/questions/958350/how-do-you-url-encode-the-symbol-in-the-iphone-sdk
用 Bézier 曲线做路径画浮云动画〜〜
http://www.cocoachina.com/bbs/read.php?tid-11425-fpage-2.html
线程
http://www.cocoachina.com/bbs/read.php?tid-3035-fpage-3.html
http://stackoverflow.com/questions/2399960/how-to-customize-navigationbar-color-of-mfmailcomposeviewcontroller
Open Source iPhone App Store Apps
http://www.cocoachina.com/bbs/read.php?tid-18198-fpage-4.html
http://www.cocoachina.com/bbs/read.php?tid-16268-fpage-13.html
解析附近的map信息
http://www.jb51.net/article/19193.htm
toolbar in talbe
http://itunes.apple.com/us/app/tweetie-2/id333903271?mt=8
http://www.cocoachina.com/bbs/read.php?tid-21494-fpage-15.html
来自 http://lichen1985.com/blog/?p=251
我找到了一个最为有效的解决方案:你以release模式编译的程序不会用NSLog输出,而你以debug模式编译的程序将执行NSLog的全部功能。
#ifndef __OPTIMIZE__
# define NSLog(…) NSLog(__VA_ARGS__)
#else
# define NSLog(…) {}
#endif
翻页效果
http://oleb.net/blog/2010/06/app-store-safe-page-curl-animations/
http://github.com/brow/leaves
CATiledLayer is the way to implement handling of large images. The idea is to render only a small piece of the image at a time and then zoom in and zoom out much like how the Google Maps application works. Bill Dudney (author of Core Animation) posted a sample for that for MacOS here http://bill.dudney.net/roller/objc/entry/catiledlayer_example. [...]