摘要:ARC Best PracticesSome optional backstory: The relevant documentation is:Transitioning to ARC Release Notes Mike Ash also has a ARC great writeup in one of hisFriday Q&As. The deep technical documentation lives at theCLANG siteof the LLVM project.The advice here assumes you are using iOS 5,...
阅读全文
摘要:Finding iPhone Memory Leaks: A “Leaks” Tool TutorialbyOWEN GOSSon12. FEB, 2009inRESOURCES,TOOLS,TUTORIALSThere are plenty of different places to get a mobile application designed. The problem is that they’re quite expensive. You might be able to figure out how to create your own, but it will probabl
阅读全文
摘要:iOS应用审核的通关秘籍磨刀不误砍柴工。作为手机应用开发者,你需要向应用商店提交应用审核,迅速通过审核可以让你抢占先机。对苹果iOS应用开发者来说尤其如此。苹果应用商店的审核近乎吹毛求疵,下面这些清单可以让你知道苹果会在哪些地方找茬。基本要点首先,你的应用程序:不能导致手机故障(比如崩溃或屏幕问题)长时间/过度使用之后反应仍然很快应用内的所有价格信息中不能用固定值代替可变变量不要使用任何SDK里面的私人API不要使用任何SDK文档里面没有列出的功能不要提及用户设备上不存在的硬件功能如果需要网络连接,在没有网络的情况下要告知用户不要(过度)模仿任何本地应用程序不要(过度)山寨某个本地应用的功能运
阅读全文