2

我在 IB 中创建了一个包含自定义 UIView 的 UITableViewCell。自定义 UIView 也包含在 NIB 中。如何将此自定义 UIView 加载到自定义 UITableViewCell 中?

4

2 回答 2

1

在这里,您使用 IB UIView(有类和 1 xib View 到自定义)?所以 IB View 是不必要的,xib 是要显示的视图。

在 UITableView -> 添加:

[cell getCustomView];

添加获取 Customview 的方法:

// CustomCell.h
-(void) getCustomView;
// CustomCell.h
-(void) getCustomView{
    [customView removeFromSuperview];
    customView = [[CustomView alloc] initWithFrame:customView.frame];
    [self addSubview:customView];
}

添加加载xib CustomView:

// CustomView.m
-(id) initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        NSArray *nibs = [[NSBundle mainBundle] loadNibNamed:@"CustomView" owner:self options:nil];
        CustomView *v = (CustomView *)[nibs objectAtIndex:0];
        return v;
    }
    return self;
}
于 2013-06-19T05:14:27.473 回答
0

你需要创建一个子类UITableViewCell。在您的子类的initWithCoder:方法中,调用 后[super initWithCoder:aDecoder],您可以加载另一个 nib 并将其视图添加为单元格的子视图 ( self)。

于 2013-06-18T23:59:57.513 回答