在TableView上选中某个Cell会触发 [cpp] view plain copy - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ } 该方法的传入参数是“NSIndexPath”类型,如何获得对应的Cell对象吗,方法如下: [cpp] view plain copy - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ <span style="font-family: Consolas, 'Courier New', Courier, mono, serif; line-height: 18px;">UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; </span> } 之后就可以对相应的Cell进行操作了。