摘要:
开发ios程序时调试的好帮手---NSAssert()函数。而且和NSLog()函数一样简单易用,代码如下:NSAssert(x!=0,@"x must not be zero");在表达式“x!=0”不成立时,程序就会抛出异常,并显示自定义的消息"x must not be zero",并同时显示... 阅读全文
摘要:
@property 在头文件中使用 可以让编译好器自动编写一个与数据成员同名的方法声明来省去读写方法。test.h@property int age;-(int)age;-(void)setAge:(int)myAge;test.m@synthesize age; 等效于在.m文件中实现2个方法-(... 阅读全文