「autorelease」に問題があります。コードを見てください。「autorelease」で2つのメッセージエラーが発生します。
-「自動解放」は使用できません:自動参照カウントモードでは使用できません
と:
ARCは、「autorelease」の明示的なメッセージ送信を禁止します//コード
- (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;
}
誰かが助けることができますか?
どうも!!