我想設置從UITableViewCell
繼承了我自己的方法自定義單元格的文本,這裏是我的代碼: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
爲好。我的代碼中是否有錯誤,或者您是否建議使用其他方法?
什麼是brQ?你需要在你的tableview'mytblview'上調用reloadData。 –
對不起,編輯:) –
你在使用IB嗎?你有沒有設置IBOutlet? –