摘要:
@interface ViewController ()@property (nonatomic, strong) CALayer *secLayer; // 秒针layer@property (nonatomic, strong) NSTimer *timer; // 定时器@end@imp... 阅读全文
摘要:
1.大多数delegate protocols 都拥有几个消息源。以GKMatch为例(A GKMatch object provides a peer-to-peer network between a group of devices that are connected to Game Cen... 阅读全文
摘要:
1.使用NSAssert主要可以作为自定义bug的返回信息,对调试极为方便知道bug出现在哪NSAssert()只是一个宏,用于开发阶段调试程序中的Bug,通过为NSAssert()传递条件表达式来断定是否属于Bug,满足条件返回真值,程序继续运行,如果返回假值,则抛出异常,并切可以自定义异常描述。... 阅读全文