UITableView 显示2列的代码
时间: 2023-03-29 08:01:48 浏览: 130
以下是 UITableView 显示 2 列的代码示例:
```
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// 设置第一列的内容
cell.textLabel.text = [NSString stringWithFormat:@"第 %ld 行,第 1 列", (long)indexPath.row];
// 添加第二列的内容
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(150, , 150, cell.frame.size.height)];
label.text = [NSString stringWithFormat:@"第 %ld 行,第 2 列", (long)indexPath.row];
[cell.contentView addSubview:label];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// 返回行数
return 10;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// 返回列数
return 2;
}
```
阅读全文