I have the method:
- (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section
{
return items.count;
}
What I do now is to copy the whole first line and then remove the words about the formal parameters. Is there a better way to copy the method name so that I can get tableView:numberOfRowsInSection:
quickly?