0
我已經使用數組數組填充tableview,但我不知道如何顯示文本作爲單元格標籤。如何在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;
}
非常感謝! – novicePrgrmr