gpt4 book ai didi

iphone - 将 subview 添加到 UITableViewCell 内容 View

转载 作者:行者123 更新时间:2023-11-28 23:10:35 26 4
gpt4 key购买 nike

如何从实现文件(即 drawRect< 中的 MyCustomCell.m)将 subView 添加到自定义 UITableViewCell/ 方法?而不是将它添加到 View Controller 的 cellForRowAtIndexPath 方法中......

我尝试了 [self.contentView addSubView: view1]; 但它给出了这个警告:UIView may not respond to -addSubView:

编辑:

导致崩溃的代码是:

- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
// Initialization code (add your view here.)
[self.contentView addSubView: self.view1];
}
return self;
}

最佳答案

这是你的拼写错误;不是 addSubView:,而是 addSubview:

关于iphone - 将 subview 添加到 UITableViewCell 内容 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8384359/

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