0
テーブルビューに配列の配列を設定しましたが、セルラベルとしてテキストを表示する方法がわかりません。テーブルビューのセルにテキストラベルを表示する方法
文字列を、配列内の配列の "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;
}
ありがとうございました! – novicePrgrmr