2012年3月20日
摘要: (对于在ViewController之间传值)最简单最专业的方法就是所谓的实例共享(shared instance)。基本的做法就是在最初调用的时候创建一个可以实例化这个类的单例的类方法(singleton),然后在接下来的调用中返回这个实例。我们用一个棋盘游戏中常见的Engine类来举例说明:Engine.h[plain]view plaincopy#import@interfaceEngine:NSObject{NSUIntegerboard[100];//c-stylearray}+(Engine*)sharedInstance;-(NSUInteger)getFieldValueAtP 阅读全文
posted @ 2012-03-20 20:03 wtq 阅读(2925) 评论(0) 推荐(0) 编辑
摘要: 利用xcode4.2编译后的应用程序(.app文件)保存的路径是: /用户/用户名/library/Developer/xcode/DerivedData/vsstoo-ewhhefwrnqvev……/build/products/release-iphoneos/vsstoo 阅读全文
posted @ 2012-03-20 09:37 wtq 阅读(435) 评论(0) 推荐(0) 编辑