UITableView:未调用cellForRowAtIndexPath

时间:2014-06-14 18:24:37

标签: objective-c uitableview

我遇到问题,并且没有调用cellForRowAtIndexPath。我检查了行和段的no都不为零。提前感谢任何建议。

- (void)viewDidLoad
{
    [super viewDidLoad];

    MakeupTable=[[UITableView alloc]init];
    MakeupTable.dataSource=self;
    MakeupTable.delegate=self;

    [MakeupTable reloadData];


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 2;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (section==0) {
        return 4;
    }else{
        return 1;
    }

}


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

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    return cell;
}

1 个答案:

答案 0 :(得分:0)

确保将此类设置为表视图委托:

 @interface YourViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>