如何添加图像和文本,如下面的快照所示?我已经在我的应用程序中使用导航控制器,因此将 UITableView 控制器作为主页中的新导航页面包含任何问题。
问问题
135 次
2 回答
2
配置您的时,UITableViewCell
您可以将UIImageView
and添加UILabel
到单元格中contentView
。
UITableViewCell *cell = ...;
UIImageView *yourImageView = ...;
UILabel *yourLabel = ...;
[cell.contentView addSubview:yourImageView];
[cell.contentView addSubview:yourLabel];
于 2012-09-08T13:00:09.347 回答
0
我会将 UITableView Cell 子类化并创建自己的 cell MyCustomTableViewCell
,其中包含 UIImageView 和 UILabel 。
然后你可以这样做来更新你的单元格重用案例
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]
MyCustomTableViewCell *myCell = (MyCustomTableViewCell)cell;
myCell.label.text = newText;
myCell.imageView.image = newImage;
return cell;
}
于 2012-09-08T13:17:45.973 回答