0

创建 .xib:

在此处输入图像描述

设置类:

在此处输入图像描述

它是这样显示的:

在此处输入图像描述

这是我加载单元格的方式:

@implementation FieldInfoTableViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    UINib *cellNib = [UINib nibWithNibName:@"FieldInfoCell" bundle:nil];

    [self.tableView registerNib:cellNib forCellReuseIdentifier:FieldInfoCellIndentifier];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0) {
        FieldInfoCell *fieldCell = [tableView dequeueReusableCellWithIdentifier:FieldInfoCellIndentifier forIndexPath:indexPath];

        fieldCell.fieldNameLabel.text = self.boundarier.name;

        return fieldCell;
    }

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    return cell;
}

FielcInfoCell:

@interface FieldInfoCell : UITableViewCell

@property (strong, nonatomic) IBOutlet UILabel *fieldNameLabel;

@end

@implementation FieldInfoCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

正在重命名标签,但未设置单元格大小和背景颜色。

编辑:

我在 IB 中设置了高度:

在此处输入图像描述

添加:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 150;
}

这给了我高度,但仍然没有背景颜色。有点让我觉得我没有正确设置其他东西。

4

3 回答 3

2

不幸的是,您不能在 xib 中为普通的表视图样式设置背景颜色(它确实适用于分组样式表)。您必须在 tableView 中的代码中设置颜色: willDisplayCell: forRowAtIndexPath:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.section == 0)
        cell.backgroundColor = [UIColor colorWithRed:173/255.0 green:75/255.0 blue:33/255.0 alpha:1];
}
于 2013-05-13T22:23:00.800 回答
1

您可以从 UITableViewDelegate 设置 tableView 行高:

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
       return YOUR_HEIGHT;
     }
于 2013-05-13T22:01:07.063 回答
0

在 Interface Builder 中检查父 UITableView 上的单元格高度。该值必须是原始(较小的)值。尝试将此值设置为您想要设置的高度。

于 2013-05-13T21:55:18.163 回答