テーブルビューに問題がありました。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
UITableViewCell *tableCell = [tableView cellForRowAtIndexPath:indexPath];
BOOL isSelected = (tableCell.accessoryView = [[ UIImageView alloc ] initWithImage:[UIImage imageNamed:@"Checkmark-hvid"]]);
if (isSelected) {
tableCell.accessoryType = UITableViewCellAccessoryNone;
}
else {
tableCell.accessoryView = [[ UIImageView alloc ]
initWithImage:[UIImage imageNamed:@"Checkmark-hvid"]];
}
}
問題は、BOOL isSelected をassessoryView (画像) として定義できないことです。
誰かが答えを知っているなら、私を助けてください!
- Mikkel V (悪い英語でごめんなさい)