摘要:
IOS-tableViewCell重用机制首先介绍tableViewCell原生cell的使用和重用机制使用dequeueReusableCellWithIdentifier方法,这个方法会从缓存池中,搜索有没有可以重用的cell,然后如果有的话,会进行重用。- (UITableVi... 阅读全文
摘要:
Object C—类中函数的调用创建,三个类。然后,在代码中调用相同名字的函数。观察他们的调用次序。@interface test : NSObject- (void)print;@end@implementation test- (void)print{ NSLog(@"te... 阅读全文