菜鸟教程小白 发表于 2022-12-13 00:21:28

iphone - 更改与主 ViewController 类不同的 .xib 中的标签文本


                                            <p><p>我拥有的是在单独的 <code>.xib</code> 中创建的自定义表格单元格。有了它,我就有了一个 Objective-C 类。我将自定义单元格中的标签连接到自定义单元格的类。</p>

<p>在我的主 .xib 中,我有一个添加自定义单元格的 <code>TableView</code>。填充的代码在主类 (ViewController.m) 中。</p>

<p>那么如何从主类(ViewController.m)更改自定义单元格中的<code>label</code>?</p>

<p>当用户点击自定义单元格时,会显示一个对话框,自定义单元格中<code>label</code>的文本会根据对话框中选择的按钮而改变。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于它是一个表格单元格,我假设您在表格 View 中使用它。你通常通过 </p>

<pre><code>- (UITableViewCell *)UITableView:(UITableView *) cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @&#34;myCustomCell&#34;;
    MyCustomCell *cell = ;
    if (cell == nil) {
      NSArray *nib = [ loadNibNamed:@&#34;MyCustomCell&#34; owner:self options:nil];
      for (id anObject in nib) {
            if (]) {
                cell = (MyCustomCell *)anObject;
            }
      }
    }
    cell.myLabel.text = @&#34;Some Text&#34;; // This will set myLabel text to &#34;Some Text&#34;
    return cell;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 更改与主 ViewController 类不同的 .xib 中的标签文本,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14167847/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14167847/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 更改与主 ViewController 类不同的 .xib 中的标签文本