OStack程序员社区-中国程序员成长平台

标题: ios - 删除 UITableViewCell 中的默认 "textLabel" [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 10:52
标题: ios - 删除 UITableViewCell 中的默认 "textLabel"

我将 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-推荐答案


您可以覆盖返回 (a) 您的标签或 (b) nil 的文本标签的 getter:

-(UILabel*) textLabel {
    return myLabel; // or perhaps return nil
}

这将阻止您的派生类的用户访问基本单元类型的标签。

关于ios - 删除 UITableViewCell 中的默认 "textLabel",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8970356/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4