我将 UITableViewCell 子类化为自定义单元格 View ,如下所示:
@interface CustomCell : UITableViewCell
@property (nonatomic, strong) IBOutlet UILabel *customTextLabel;
@end
有没有办法摆脱默认的“textLabel”,这样下面的代码就会失败:
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier"CustomCell"];
[cell.textLabel setText"whee"];
我想限制使用,以便唯一可以设置的文本标签是我的“customTextLabel”。
感谢您的帮助。
Best Answer-推荐答案 strong>
您可以覆盖返回 (a) 您的标签或 (b) nil 的文本标签的 getter:
-(UILabel*) textLabel {
return myLabel; // or perhaps return nil
}
这将阻止您的派生类的用户访问基本单元类型的标签。
关于ios - 删除 UITableViewCell 中的默认 "textLabel",我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8970356/
|