//重写 cell 点击事件 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath { //当离开某行时,让某行的选中状态消失 [tableView deselectRowAtIndexPath:indexPath animated:YES]; } 或在 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"activityTableViewCell"; activityTableViewCell *cell = (activityTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"activityTableViewCell" owner:self options:nil]; cell = [array objectAtIndex:0]; } cell.activityName.text = [[parkEntity.activity_rows objectAtIndex:indexPath.row] objectForKey:@"title"]; cell.activityIntroduce.text= [[parkEntity.activity_rows objectAtIndex:indexPath.row] objectForKey:@"description"]; NSString *imageUrl = [NSString stringWithFormat:@"%@/%@", IMAGE_URL, [[parkEntity.activity_rows objectAtIndex:indexPath.row] objectForKey:@"album_thumb"]]; cell.activityImage.imageURL=[NSURL URLWithString:imageUrl]; cell.selectionStyle=UITableViewCellSelectionStyleNone;//设置cell点击效果 return cell; }
原文:http://my.oschina.net/jack088/blog/519412