0

我正在使用这样的简单自定义 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 实际上改变了它的颜色,但是在添加视图时,它就不起作用了。

任何帮助,将不胜感激。

4

1 回答 1

0

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

CGRectMake(40,200, 350, 100)

CGRectMake(40, 0, 350, 100)
于 2013-10-23T19:02:41.030 回答