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 = @"myCustomCell";
MyCustomCell *cell = ;
if (cell == nil) {
NSArray *nib = [ loadNibNamed:@"MyCustomCell" owner:self options:nil];
for (id anObject in nib) {
if (]) {
cell = (MyCustomCell *)anObject;
}
}
}
cell.myLabel.text = @"Some Text"; // This will set myLabel text to "Some Text"
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]