0

最初のテーブルビューと、別のテーブルビューにプッシュするセグエがあります。ユーザーが最初のテーブルビューからセルに触れたときに、すでに2番目のテーブルビューをプッシュすることはできますが、2番目のテーブルビューのデータをプッシュするしかありません。2番目のテーブルビューは、UITableViewControllerから継承するカスタムコントローラーを使用しています。メソッド「cellForRowAtIndexPath:(NSIndexPath *)indexPath」を使用してセルにテキストを配置しましたが、コードがそのメソッドに到達することはありません。何が問題なのかわかりません。

これが私のカスタムクラスです:

    #import "TableViewControllerTop.h"

    @interface TableViewControllerTop ()

    @end

    @implementation TableViewControllerTop
    @synthesize tableView;
    @synthesize cells;

    - (id)initWithStyle:(UITableViewStyle)style
    {
        self = [super initWithStyle:style];
        if (self) {
            // Custom initialization
        }
        return self;
    }

    - (void)viewDidLoad
    {
        [super viewDidLoad];

        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        self.navigationItem.rightBarButtonItem = self.editButtonItem;
    }

    - (void)viewDidUnload
    {
        [self setTableView:nil];
        [self setCells:nil];
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    }

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    }

    #pragma mark - Table view data source

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
    #warning Potentially incomplete method implementation.
        // Return the number of sections.
        return 0;
    }

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
    // Return the number of rows in the section.
    return 6;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Top 50 list";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...

    cell.textLabel.text = @"Test";

    return cell;
}


#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"selected");
}

@end

ご協力いただきありがとうございます。必要に応じて、さらにコードを投稿できます。

4

1 に答える 1

1

コードがセクション数に対して0を返しているようです。したがって、表示するものは何もないと考えます。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 0;
}
于 2012-04-09T00:47:39.040 に答える