我在viewcontrolller.m中设置了NSMutableArray

barcodeArray = [[NSMutableArray alloc] init];


在viewcontroller.h中是这样的:

@interface SecondViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {

    NSString *string;
    NSString *barcode;
    NSArray *array;
    NSMutableArray *barcodeArray;

}


比我添加这样的对象:

if ([barcodeArray indexOfObject:barcode] != NSNotFound) {
    NSLog(@"%@",barcode);
    NSLog(@"object zit er al in");

}
else {
    [barcodeArray addObject:barcode];
    [_tableView reloadData];
    NSLog(@"%@",barcodeArray);
    NSLog(@"object zit er nog niet in");

}


当我将numberOfRowsInSection设置为返回[barcodeArray count]时;未调用cellForRowAtIndexPath函数。就像条形码数组计数为空。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [barcodeArray count];

}


当我将numberofRowsinSection设置为返回1时;只是为了测试..我得到一个带有(空)的单元格:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"aangeroepen");
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Set up the cell...

        cell.textLabel.text = [NSString stringWithFormat:@"%@",[barcodeArray objectAtIndex:indexPath.row]];
NSLog(@"%@", cell.textLabel.text);


    return cell;
}


这是我的日志:

2013-01-17 07:57:04.139 Scanner[21865:c07] (
    123456
)   **// NSMutableArray when i add the barcode**
2013-01-17 07:57:04.140 Scanner[21865:c07] object zit er nog niet in
2013-01-17 07:57:05.485 Scanner[21865:c07] viewdidload
2013-01-17 07:57:05.488 Scanner[21865:c07] aangeroepen
2013-01-17 07:57:05.489 Scanner[21865:c07] (null) **// NSMutableArray in cell.textLabel.text**


编辑:

    cell.textLabel.text = [NSString stringWithFormat:@"%@",[barcodeArray objectAtIndex:indexPath.row]];
NSLog(@"celltext:%@", cell.textLabel.text);
    NSLog(@"barcodearray%@", [barcodeArray objectAtIndex:indexPath.row]);
    NSLog(@"objectatindex:0:%@", [barcodeArray objectAtIndex:0]);
    NSLog(@"indexpath.row:%d", indexPath.row);

Log:



2013-01-17 08:27:28.838 Scanner[21978:c07] celltext:(null)
2013-01-17 08:27:28.839 Scanner[21978:c07] barcodearray(null)
2013-01-17 08:27:28.839 Scanner[21978:c07] objectatindex:0:(null)
2013-01-17 08:27:28.839 Scanner[21978:c07] indexpath.row:0

最佳答案

我有一种很强烈的感觉,您的barcodeArray在您的方法中仅具有本地范围
if / else语句。我认为您需要保留barcodeArray,因为在其他方法中它为null。

您可以在NSLog(@"%d", [barcodeArray count]);委托方法中执行numberOfRowsInSection并显示打印内容吗?这将有助于确认是否与分配和保留阵列有关。如果这是问题所在...那么在您的头文件中,您应该编写,

@property (strong, nonatomic) NSMutableArray* barcodeArray;,并在实现文件中编写`@synthesize barcodeArray = _barcodeArray;

然后,您会做,self.barcodeArray = [NSMutableArray alloc] init];

在所有使用barcodeArray的地方,请在其前面添加self。通过保留对象(具有头文件中的属性... keep = strong),您现在可以访问整个类。在您的cellForRowAtIndexPathnumberOfRows方法中,它不应再为null。

编辑:

在您的代码中,您正在做

[barcodeArray addObject:barcode];


这应该是

[self.barcodeArray addObject:barcode];


代码中的任何地方都不应包含barcodeArray-您应仅包含self.barcodeArray

10-08 06:57