菜鸟教程小白 发表于 2022-12-13 10:52:33

ios - 删除 UITableViewCell 中的默认 "textLabel"


                                            <p><p>我将 UITableViewCell 子类化为自定义单元格 View ,如下所示:</p>

<pre><code>@interface CustomCell : UITableViewCell

@property (nonatomic, strong) IBOutlet UILabel *customTextLabel;

@end
</code></pre>

<p>有没有办法摆脱默认的“textLabel”,这样下面的代码就会失败:</p>

<pre><code>CustomCell *cell = (CustomCell *);

;
</code></pre>

<p>我想限制使用,以便唯一可以设置的文本标签是我的“customTextLabel”。</p>

<p>感谢您的帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以覆盖返回 (a) 您的标签或 (b) nil 的文本标签的 getter:</p>

<pre><code>-(UILabel*) textLabel {
    return myLabel; // or perhaps return nil
}
</code></pre>

<p>这将阻止您的派生类的用户访问基本单元类型的标签。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 删除 UITableViewCell 中的默认&#34;textLabel&#34;,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8970356/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8970356/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 删除 UITableViewCell 中的默认 &#34;textLabel&#34;