独自のメソッドで継承するカスタム セルのテキストを設定したいのですが、これが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
ものも更新していません。コードに誤りがありますか、それとも別の方法を使用することをお勧めしますか?