可能重复:
Objective C 中的方法语法
我对 iPhone 开发很陌生,我对使用 X-code 的方法声明 iPhone 开发感到困惑
请帮我确定这里的方法名称是什么。
tableView
或者willSelectRowAtIndexPath
请解释你是如何识别它的。提前致谢。
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSUInteger row = [indexPath row];
if (row == 0) return nil;
return indexPath;
}