我收到以下代码的上述违规行为:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [mapContacts objectAtIndex:indexPath.row];
NSLog(@"%@",cell.textLabel.text);
cell.detailTextLabel.text = [number objectAtIndex:indexPath.row];
return cell;
}
违规行为显示在return cell;
What can be done to remediate this? 请帮忙。我正在使用带有 ARC 的 XCode 4.5。