0

我正在打开一个.xib 文件,其中包含UITableView我的一个文件,UIPopViewController并且我已经给出了 .xib 的数据源和委托方法UIATableView

但是在调用 cellForRowAtIndexPath 方法后,我的应用程序崩溃了。

我的代码如下:

- (IBAction)btnOilChangePressed:(id)sender {
    OilChangeView *oilVC = [[OilChangeView alloc] initWithNibName:@"OilChangeView" bundle:nil];
   
       UIPopoverController *popView = [[UIPopoverController alloc] initWithContentViewController:oilVC];
        
        [popView setPopoverContentSize:CGSizeMake(480, 250)];
        [popView presentPopoverFromRect:btnOilChange.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionLeft animated:YES];
    
}

以下是 OilChangeView.m 文件上的代码

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [arrayInfo count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }
    
    
    cell.textLabel.text = [arrayInfo objectAtIndex:indexPath.row];
    NSLog(@"text:%@",[arrayInfo objectAtIndex:indexPath.row]);
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    
    // Configure the cell...
    
    return cell;
}
4

0 回答 0