iphone – 在xcode 4中有没有办法列出所有委托功能并自动将代码片段添加到文件中?

这似乎是一个明显的特征,应该在那里,但我找不到它.

例如,如果我的类是一个uitableviewdelegate,那么我最快的方式是查看所有可用的委托方法并将我感兴趣的方法添加到我的实现文件中?

最佳答案 您可以使用Simon上面发布的第一个链接中的提示来获取委托的方法签名.之后,添加代码取决于您.

我喜欢做的是选择我最常使用的委托方法,以及add them to a code snippet.

例如,对于UITableViewDatasource,我有一个名为“UITableView Datasource Required Methods”的代码段,其中包含:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellIdentifier = @"myCellName";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
    }

    //customize cell before showing it

    return cell;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return <#numRow#> ;
}

然后,每当我创建一个表委托时,我都会将该代码段拖到我的代码中.

点赞