摘要: 附件是App Store 审核准则,中文版和英文版,英文版来自apple 官方网站,包含目前最多的信息,中文版是翻译版,信息陈旧一些。App Store Review Guidelines苹果Appstore审核政策指南 阅读全文
posted @ 2012-06-11 11:41 AlexFan 阅读(223) 评论(0) 推荐(0) 编辑
摘要: UITableView下拉刷新页面的实现 http://blog.csdn.net/sjzsp/article/details/6320162iphone 下拉刷新(转) http://www.cnblogs.com/likwo/archive/2011/01/19/1939414.htmliPhone应用炫酷的下拉更新效果(v1.0版,持续改进中...) http://www.yuephone.com/forum.php?mod=viewthread&tid=34&extra=page%3D1 阅读全文
posted @ 2012-06-08 14:52 AlexFan 阅读(474) 评论(0) 推荐(0) 编辑
摘要: iTunesConnect_DeveloperGuide_CN 阅读全文
posted @ 2012-06-07 10:44 AlexFan 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Apple Developer Program Roles OverviewDeveloper Program members: Agent, Admin, or Member.http://developer.apple.com/programs/roles/index.php 阅读全文
posted @ 2011-11-04 18:01 AlexFan 阅读(260) 评论(0) 推荐(0) 编辑
摘要: TouchJSON is an Objective-C based parser and generator for JSON encoded data. TouchJSON compiles for Mac OS X and iOS devices (currently iPhone, iPad and iPod Touch).https://github.com/TouchCode/TouchJSON 阅读全文
posted @ 2011-10-28 14:44 AlexFan 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 以下是iOS模拟器下,文件的组织形式,在iOS Device 上的文件组织形式也是这样的。iOS 将第三方程序储存在 Applications 文件夹下,各个程序的所有文件都在其 globally unique identifiers (GUIDs) 的文件下,GUID 文件夹即是程序的沙盒。􀀁 Documents: Your application stores its data in Documents, with the exception of NSUserDefaults-based preference settings.􀀁 Library: NSUserDefaults-ba 阅读全文
posted @ 2011-09-15 18:12 AlexFan 阅读(1564) 评论(0) 推荐(0) 编辑
摘要: Threading Programming Guide Thread Management Writing Your Thread Entry Routine1 Creating an Autorelease PoolApplications that link in Objective-C frameworks typically must create at least one autorelease pool in each of their threads. If an application uses the managed model—where the application h 阅读全文
posted @ 2011-07-26 18:42 AlexFan 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: Application LifecycleAfter application:didFinishLaunchingWithOptions:, then what?Application enters a “run loop” repeatedly doing the following ...An autorelease pool is created (more on this in a moment)Application waits for events (touch, timed event, I/O, etc.)Events are dispatched through UIKit 阅读全文
posted @ 2011-07-21 16:20 AlexFan 阅读(261) 评论(0) 推荐(0) 编辑
摘要: Autoreleasing Objects• Calling -autorelease flags an object to be sent release at somepoint in the future• Let’s you fulfill your retain/release obligations while allowing anobject some additional time to live• Makes it much more convenient to manage memory• Very useful in methods which return a new 阅读全文
posted @ 2011-07-21 15:51 AlexFan 阅读(439) 评论(0) 推荐(0) 编辑
摘要: How does -autorelease work?• Object is added to current autorelease pool• Autorelease pools track objects scheduled to be released ■ When the pool itself is released, it sends -release to all its objects• UIKit automatically wraps a pool around every event dispatch 阅读全文
posted @ 2011-07-21 15:51 AlexFan 阅读(253) 评论(0) 推荐(0) 编辑