标签:ctr custom xpath select 定义 sel 方法 ids tableview
选中了tableview的cell的某一行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
如果你是自定义的话就用下面这种
MyCustomCell *cell = (MyCustomCell *)[tableView cellForRowAtIndexPath:indexPath];
在didSelectRowAtIndexPath 里面取cell的方法
标签:ctr custom xpath select 定义 sel 方法 ids tableview
原文地址:http://www.cnblogs.com/shitou123/p/6408395.html