我拥有的是在单独的 .xib
中创建的自定义表格单元格。有了它,我就有了一个 Objective-C 类。我将自定义单元格中的标签连接到自定义单元格的类。
在我的主 .xib 中,我有一个添加自定义单元格的 TableView
。填充的代码在主类 (ViewController.m) 中。
那么如何从主类(ViewController.m)更改自定义单元格中的label
?
当用户点击自定义单元格时,会显示一个对话框,自定义单元格中label
的文本会根据对话框中选择的按钮而改变。
由于它是一个表格单元格,我假设您在表格 View 中使用它。你通常通过
- (UITableViewCell *)UITableViewUITableView *) cellForRowAtIndexPathNSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"myCustomCell";
MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed"MyCustomCell" owner:self options:nil];
for (id anObject in nib) {
if ([anObject isKindOfClass:[MyCustomCell class]]) {
cell = (MyCustomCell *)anObject;
}
}
}
cell.myLabel.text = @"Some Text"; // This will set myLabel text to "Some Text"
return cell;
}
关于iphone - 更改与主 ViewController 类不同的 .xib 中的标签文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14167847/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |