怎样选择tableview中的某一行,并让他这行变颜色?

同上。我是结合coredata 的,最好说详细点,给点意见参考。怎样实时更新改变后的行。

图片说明在行选中事件里写

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

cell.contentView.backgroundColor = [UIColor blueColor];
}