我有一个视图控制器,当单击按钮时会显示一个表视图控制器。表格视图委托一切正常,表格视图显示正常,但在 ellForRowAtIndexPath: 委托方法中,单元格被实例化并返回,但未正确显示。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"alrededor";
alrededorCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[alrededorCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSDictionary *categoria = [[NSDictionary alloc] initWithDictionary: [_categoriasArray objectAtIndex:indexPath.row]];
NSLog(@"categoria %@", categoria);
cell.title.text = [categoria valueForKey:@"title"];
return cell;
}
非常感谢