生成instance: alloc
初期化instance: init
比较object: BOOL b = [objA isEqual: objB];
指定timing呼叫方法:
3.5秒后呼叫coffee方法
[self performSelector:@selector(coffee:) withObject:@"咖啡" afterDelay:3.5f];
等待被呼叫的方法coffee
-(void) coffee: (NSString*)str{
NSLog(str); //输出——> 咖啡
}
指定方法在台下运行:
-(void)runVeryHeavyMethodInBackground{
[self performSelectorInBackground:@selctor(veryHeavyMethod) withObject:nil];
}
- (void)veryHeavyMethod {
// 在这里的处理,很花时间的,所以要提前调用它在后台执行
}
网友评论