我有这样的场景:
我在“原型单元格”中添加了一个简单的“表格视图”和下一个 +1:
信息网
NSMutableArray *arrCursos;
信息网
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Informações";
arrCursos = [[NSMutableArray alloc] init];
[arrCursos addObject:@"[G] - Odontologia"];
[arrCursos addObject:@"[P/LT] - Odontologia"];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [arrCursos count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"cursosCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [arrCursos objectAtIndex:indexPath.row];
return cell;
}
我不知道为什么我的表格视图是空的,像这样: