0
私はスターターです! 私が選択したすべてのセルのindexPathを取得し、私のプロジェクトは、アラーム時計NSMutableArrayでindexPathを取得して書き込む方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryNone;
}
あるNSMutableArrayの に書く方法TableViewController で7細胞 - (7日)を持っているあなたが得ることができる助けたり、私に何か
indexPathsForSelectedRowsメソッドを調べてください! –
ありがとう - Teja Nandamuri –