我对“autorelease”有问题,看看我的代码:然后在“autorelease”中出现 2 条消息错误:
-'autorelease' 不可用:在自动引用计数模式下不可用
和:
ARC 禁止“自动释放”//代码的显式消息发送
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 25;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell==nil){
cell=[[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] ***autorelease***];
}
// Configure the cell...
cell.textLabel.text=[NSString stringWithFormat:@"Rental Property:%d", indexPath.row];
NSLog(@"Rental Property %d", indexPath.row);
return cell; return cell;
}
有人可以帮忙吗?
谢谢!!