如何在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;
}
I have populated a tableview with an array of arrays, but I do not know how to display text as the cell label.
I want to use the string in the "0" position of the array that is inside the array as the text label.
Thanks.
Here's my code:
- (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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要访问数组中的数组,因为您有一个数组数组:
这是从
exercisesArray
中索引indexPath.row
(表的行)处获取的数组。这是来自该数组(内部数组)的字符串(如您所暗示的)。
You need to access the array within the array since you have an array of arrays:
This get's the array at index
indexPath.row
(the table's row) fromexercisesArray
.This get's the string (as you implied) from that array (the inner array).