- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;

解决方案 »

  1.   

    意思是我使用的点击方法不对? 应该使用- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;
    这个方法吗? 在这个方法里怎么取呢!
      

  2.   

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
     
            NSLog(@"%@",  cell.detailTextLabel.text);