gpt4 book ai didi

ios - NIB 的 UITableViewCell 中的子类 UIView

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:42:28 26 4
gpt4 key购买 nike

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

最佳答案

在这里,您使用 IB UIView(有 class & 1 xib View to custom)?所以IB View是不需要的,xib是用来展示的view。

在 UITableView -> 添加:

[cell getCustomView];

添加获取自定义 View 的方法:

// 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;
}

关于ios - NIB 的 UITableViewCell 中的子类 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17180434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com