我已经用数组数组填充了一个tableview,但我不知道如何将文本显示为单元格标签。
我想在数组内部的数组的“0”位置使用字符串作为文本标签。
感谢。
这是我的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
// Set up the cell...
cell.textLabel.text = [excersizeArray objectAtIndex:indexPath.row];
return cell;
}
答案 0 :(得分:0)
您需要访问数组中的数组,因为您有一个数组数组:
cell.textLabel.text = [[excersizeArray objectAtIndex:indexPath.row]objectAtIndex:0];
这是来自indexPath.row
的索引exercisesArray
(表格的行)的数组。
[excersizeArray objectAtIndex:indexPath.row]
这个get是来自该数组(内部数组)的字符串(如你暗示的那样)。