在我看来,我提出了以下方案表:
table = [[UITableView alloc] initWithFrame:CGRectMake(0, 44, 320, 370) style:UITableViewCellStyleDefault];
table.delegate = self;
table.dataSource = self;
table.separatorStyle = UITableViewCellSeparatorStyleNone;
[self.view addSubview:table];
缩略语
table.delegate = nil;
table.dataSource = nil;
[table release];
table=nil;
更好或更低的方法
[table release];
table=nil;
我想知道,我是否有意重新任命代表和数据来源会发生什么情况。
Thanq