自定义单元格和详细文本标签

时间:2011-07-01 05:23:48

标签: iphone uitableview custom-cell

想问这个问题。我可以在自定义单元格中使用detailTextLabel吗?我想要在我的自定义单元格中显示其他信息。当我尝试使用detailTextLabel时,不会显示任何内容。

自定义单元格.m代码:

- (void)setUseDarkBackground:(BOOL)flag{
if (flag != useDarkBackground || !self.backgroundView)
{
    useDarkBackground = flag;

    NSString *backgroundImagePath = [[NSBundle mainBundle] pathForResource:useDarkBackground ? @"BGDark" : @"BGLight" ofType:@"png"];
    UIImage *backgroundImage = [[UIImage imageWithContentsOfFile:backgroundImagePath] stretchableImageWithLeftCapWidth:0.0 topCapHeight:1.0];
    self.backgroundView = [[[UIImageView alloc] initWithImage:backgroundImage] autorelease];
    self.backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    self.backgroundView.frame = self.bounds;
}}

2 个答案:

答案 0 :(得分:1)

如果要显示其他详细信息,可以在自定义单元格中再添加一个UILabel

答案 1 :(得分:0)

您还可以使用UITableViewCell的{​​{3}}。

@property(nonatomic, readonly, retain) UILabel *detailTextLabel

关注使用detailTextLabel与单元格的博客文章。

detailTextLabel