1.初始化
初始化方法的返回類型用instancetype,不要用id勾哩。
2.單利
單利對象應(yīng)該使用線程安全的模式創(chuàng)建共享的實例隆判。
+ (instancetype)sharedInstance {
static id sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[self alloc] init];
});
return sharedInstance;
}
3.字符串、字典俯渤、數(shù)組的創(chuàng)建
盡量用下面的方式創(chuàng)建
NSArray *names = @[@"Brian", @"Matt", @"Chris", @"Alex", @"Steve", @"Paul"];
NSDictionary *productManagers = @{@"iPhone" : @"Kate", @"iPad" : @"Kamal", @"Mobile Web" : @"Bill"};
4.CGRect 函數(shù)
當(dāng)訪問一個CGRect的x呆细,y,width八匠,height時絮爷,應(yīng)該使用[CGGeometry函數(shù)]
CGRect frame = self.view.frame;
CGFloat x = CGRectGetMinX(frame);
CGFloat y = CGRectGetMinY(frame);
CGFloat width = CGRectGetWidth(frame);
CGFloat height = CGRectGetHeight(frame);