摘要:
看图,设置成这样就会出现大量的警告,解决方法如下:将debug information format 更改为:DWARF即可 阅读全文
摘要:
AppDelegate.m#import "AppDelegate.h"#import "Reachability.h"@interface AppDelegate ()@property (nonatomic, strong) Reachability *reachability;@end@imp... 阅读全文
摘要:
断言, 判断是否符合某个特定条件, 符合就继续运行程序, 反之就抛出异常, 后面为自定义错误提示, 也可以使用NSParameterAssert, 在调试上有着很大的方便int a = 0;NSAssert(a != 0, @"a不是0, 不能继续运行");NSParameterAssert(a !... 阅读全文