1. ホーム
  2. ios

[解決済み] UITableViewCell で選択された行をチェックマークする

2023-01-22 05:26:02

質問

iOS開発初心者です。私は、チェックマークを自分の UITableViewCell にチェックマークを付けたいです。他の行が選択されるとチェックマークが外れるようにしたいです。どのように私はこれを行うのでしょうか?

どのように解決するのですか?

を使用しないでください。 [tableview reloadData]; // そのハンマー。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath   *)indexPath
{
    [tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    [tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}