iphone开发
hanfeng1111
这个作者很懒,什么都没留下…
展开
-
xcode中armv6与armv7
apple 通用二进制应用程序,含多种处理器或架构的二进制,如x86或x64,arm11或a8armv7与armv6是指指令或架构的CPU,armv6是iphone3gs以前arm11 cpu使用的指令集armv7是iphone3gs及以后、iphone4、ipad,cortex a8 cpu使用的指令集from : http://hackbin.blog.163.com/bl...原创 2011-08-24 16:50:23 · 158 阅读 · 0 评论 -
iPhone Backgrounder终极教程
有很多人说iPhone 4开始 4.0以后的固件已经支持后台运行了,为什么还需要Backgrounder???? 我想说双击Home键出来的叫做最近运行程序列表,出现在这个列表里面的唯一、充分且必要条件是最近运行过的程序,跟任何别的因素没有关系。而且列表里面的图标是按最近运行的顺序排序的。这个列表里面的程序有可能是在后台驻留的,也有可能是已经完全退出的,还有可能是真后台还在继续运行的...原创 2011-08-12 23:43:07 · 256 阅读 · 0 评论 -
Topic : Foundation/Foundation.h UIKit/UIKit.h No such file or directory
http://discussions.apple.com/thread.jspa?threadID=1734845原创 2011-03-18 22:36:19 · 285 阅读 · 0 评论 -
NSMutableArray 中排序
使用sortedArrayUsingComparator方法[code="java"]NSArray *sorted = [_scores sortedArrayUsingComparator:^(id obj1, id obj2){ if ([obj1 isKindOfClass:[Score class]] && [obj2 isKindOfClass:[Score clas...原创 2011-07-24 14:02:18 · 117 阅读 · 0 评论 -
objective c 编程规范
Google的Objective-C编码规范http://bukkake.iteye.com/blog/695492原创 2011-03-07 23:58:52 · 181 阅读 · 0 评论 -
objective-c 中retain,assign,copy
"The assign keyword will generate a setter which assigns the value to the instance variable directly, rather than copying or retaining it. This is best for primitive types like NSInteger and CGFloat, ...原创 2011-03-07 23:53:50 · 121 阅读 · 0 评论 -
iphone开发中loadView和viewDidLoad的区别
我通过网上一搜就搜到http://blog.csdn.net/zhanglei5415/archive/2011/02/17/6191726.aspx和 http://blog.prosight.me/index.php/2009/11/492viewDidLoad 此方法只有当view从nib文件初始化的时候才被调用。loadView 此方法在控制器的view为nil的时...原创 2011-03-07 22:54:30 · 109 阅读 · 0 评论 -
Programming Apple Push Notification Services
http://mobiforge.com/developing/story/programming-apple-push-notification-services原创 2011-06-28 13:09:16 · 141 阅读 · 0 评论 -
iPhone的2D/3D游戏引擎
近日在学习iPhone游戏开发,对于2D和3D游戏引擎的使用大费了一番周折。这方面的内容国内网站还很少,只能通过google来查找国外的一些网站资料。还好,总算找到了适合自己和团队学习的引擎。 先对可选项列举如下:[img]http://dl.iteye.com/upload/attachment/497441/155d682b-08a4-3...原创 2011-06-13 14:58:21 · 190 阅读 · 0 评论 -
how to debug EXC_BAD_ACCESS on iPhone
http://www.codza.com/how-to-debug-exc_bad_access-on-iphone原创 2011-06-09 10:15:45 · 129 阅读 · 0 评论 -
Lion 隐藏了library的问题
Mac OS X Lion为了增强所谓的安全性,隐藏了一些系统文件夹,比如Library(资源库)。如此自作多情,使用起来却不太方便,特别是在中国这块神奇的土地 上,我们随时可能要进Library里去干一些什么事。当然可以在前往里输入文件夹路径打开文件夹,但普通用户谁又知道、谁又喜欢去输那么长一段英文呢?如何显示?在终端中输入以下命令回车即可:chflags nohidden ~/Libr...原创 2011-09-02 15:10:45 · 191 阅读 · 0 评论 -
Declaring the Background Tasks You Support
Support for some types of background execution must be declared in advance by the application that uses them. An application declares this support by including the UIBackgroundModes key in its Info.pl...原创 2011-08-13 23:03:45 · 103 阅读 · 0 评论