【发布时间】:2012-08-12 13:23:30
【问题描述】:
我对 iPhone 开发很陌生,我对使用 X-code 开发 iPhone 的方法声明感到困惑
请帮我确定这里的方法名称是什么。
tableView 或 willSelectRowAtIndexPath
请说明您是如何识别它的。提前致谢。
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSUInteger row = [indexPath row];
if (row == 0) return nil;
return indexPath;
}
【问题讨论】:
标签: iphone objective-c