我想UITableViewCell
使用我自己的方法设置继承自的自定义单元格的文本,这是我的代码:
- (void)updateCell {
NSIndexPath* indexPath;
indexPath= [NSIndexPath indexPathForRow:0 inSection:1];
Somecell *cell = (Somecell *)[mytblview cellForRowAtIndexPath:indexPath];
cell.b_freq.text = @"12332123";
[mytblview reloadData];
}
这段代码也没有更新我UITableView
的。我的代码中是否有任何错误,或者您是否建议使用其他方法?