自定义UICellView不添加子视图

时间:2013-10-23 18:42:36

标签: ios uiview uitableview

我使用像这样的简单自定义UICellView:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        UIColor* color = [UIColor colorWithRed:204/255.0f green:62/255.0f blue:56/255.0f alpha:1.0f];

        // Initialization code
        //Styling the cell:
        UIView* spacer = [[UIView alloc] initWithFrame:CGRectMake(40,200, 350, 100)];
        [spacer setBackgroundColor:[UIColor colorWithRed:180/255.0f green:56/255.0f blue:61/255.0f alpha:1.0f]];
        //
        UIView* BlockNumber = [[UIView alloc] initWithFrame:CGRectMake(40,200, 179, 175)];
        [BlockNumber setBackgroundColor:[UIColor whiteColor]];

        [self.contentView addSubview:spacer];
        [self.contentView addSubview:BlockNumber];

        //

        self.backgroundColor=color;
    }



    return self;
}

我尝试使用for循环检查单元格的子视图,但它们似乎确实在那里,尽管胜利者不会出现在单元格视图中。 但是,self.backgroundColor实际上改变了它的颜色,但是当它添加视图时,它不会起作用。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

好像您正在单元格视图下添加视图。 尝试替换

CGRectMake(40,200, 350, 100)

使用

CGRectMake(40, 0, 350, 100)