再利用可能な UITableViewCell 内のボタンのタグを更新しようとしています。最初の 5 ~ 8 個のセルについては、これらのセルはまだ「再利用」されていないため、タグの設定に問題はありません。UI でセルを再利用する必要が生じると、タグの変更やボタンのタグの設定ができなくなります。私は何が欠けていますか?
UITableViewCell *cell =[tblPlaces dequeueReusableCellWithIdentifier:@"mainTableViewCell"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"mainTableViewCell"];
}
[[cell viewWithTag:107] setTag:indexPath.section];