如何从实现文件(即subView
方法内的UITableViewCell
)向自定义MyCustomCell.m
添加drawRect
?而不是将其添加到视图控制器的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/