同上。我是结合coredata 的,最好说详细点,给点意见参考。怎样实时更新改变后的行。
在行选中事件里写
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.contentView.backgroundColor = [UIColor blueColor];
}