5

我正在尝试创建一个自定义 UITableViewCell。

在 XCode 4.6 界面生成器中,我Style将单元格的属性设置为自定义。并使用拖放向单元格添加控件。2 个 UILables 和一个 UIButton。它看起来像这样。

在此处输入图像描述

我创建了一个派生自 UITableViewCell 的单独类来分配 3 个 UI 元素的属性并在那里进行更改。我还从 Identity Inspector 将单元格的自定义类设置为 DashboardCell。

DashboardCell.h

#import <UIKit/UIKit.h>

@interface DashboardCell : UITableViewCell

@property (weak, nonatomic) IBOutlet UILabel *numberOfMails;
@property (weak, nonatomic) IBOutlet UILabel *mailType;
@property (weak, nonatomic) IBOutlet UIButton *numberOfOverdueMails;

@end

DashboardCell.m

#import "DashboardCell.h"

@implementation DashboardCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        [self.numberOfOverdueMails setBackgroundColor:[UIColor colorWithRed:244/255.0f green:119/255.0f blue:125/255.0f alpha:1.0f]];
        [self.numberOfOverdueMails setTitle:@"lol" forState:UIControlStateNormal];
    }
    return self;
}

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

    // Configure the view for the selected state
}

@end

在 TableViewController 中,我修改了以下方法以返回我的自定义单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    DashboardCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[DashboardCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    return cell;
}

我的问题是即使自定义按钮出现,我所做的更改(更改按钮的背景颜色,更改一个 UILabel 的标题)也没有出现。这里似乎有什么错误?

4

2 回答 2

5

该方法initWithStyle:reuseIdentifier:不会被调用,因为您正在使用界面生成器来创建单元格。

您可以通过覆盖方法来设置背景颜色和标题awakeFromNib.

您也可以在方法中设置这些tableView:cellForRowAtIndexPath:

于 2013-02-28T04:30:15.217 回答
2

如果您从 xib 或情节提要中获取单元格,dequeueReusableCellWithIdentifier:forIndexPath:将始终返回一个单元格——如果存在,它将重用它,如果不存在,它将从 IB 中的模板创建一个。因此,您的if(cell ==nil)条款将永远不会得到满足,实际上不再需要。如果要使用init方法,请使用initWithCoder:

于 2013-02-28T05:21:32.663 回答