菜鸟教程小白 发表于 2022-12-13 11:32:28

ios - 在 Table View Controller 中显示 nil 的原型(prototype)单元格标签


                                            <p><p>我正在使用 Storyboard 来创建表格 View 并使用原型(prototype)单元格。
原型(prototype)单元格包含一个文本标签</p>

<p> TableViewController :</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *cellIdentifier = @&#34;Cell&#34;;



Cell *cell = ;
NSLog(@&#34;cellIdentifier = %@&#34;,cell);
if (cell == nil) {
    cell = [initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    NSLog(@&#34;cellIdentifier = %@&#34;,cell);

}
            cell.nameLabel.text = ;


return cell;
</code></pre>

<p>细胞.h</p>

<pre><code>@interface Cell : UITableViewCell

@property (nonatomic,weak) IBOutlet UILabel* nameLabel;
</code></pre>

<p>我在 viewcontroller.m 中导入了 cell.h。<br/>
我将原型(prototype)单元格的 restoreID 命名为“Cell”,原型(prototype)单元格的类命名为“Cell”,并将原型(prototype)单元格中的 textlabel 链接到 nameLabel。 </p>

<p>问题是:<br/>
<code>cell.nameLabel.text</code> 总是返回 nil 值,即使 <code></code> 返回一个字符串。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试命名 CellIdentifier 而不是 restoreID。</p>

<p>CellIdentifier 是一种标记 tableViewCells 的方法。这样 uitableView 在需要复用的时候就可以知道要拉出哪个 uitableviewcell。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 Table View Controller 中显示 nil 的原型(prototype)单元格标签,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32050620/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32050620/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 Table View Controller 中显示 nil 的原型(prototype)单元格标签