0

たとえば、UITableviewController をサブクラス化して新しいクラスを作成すると、以前の Xcode バージョンではこれらのコード スニペットがコメント アウトされていました。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 10;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell *cell = nil;
    cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

    if(!cell){
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"];
    }

    cell.textLabel.text = @"Cell";

    return cell;
}

Xcode 5 では、実装ファイルは完全に空白です。これは設定で変更できるものですか?ありがとうございました。

4

0 に答える 0