0

在我的头文件中:

@interface HTMLClassesViewController : UITableViewController <UITableViewDataSource, UITableViewDelegate>

所以我确实声明了dataSourceand delegate

在我的实现文件中:

- (void)viewDidLoad {

    [super viewDidLoad];

    if (self.arrayOfClasses == nil) {
        self.arrayOfClasses = [[NSMutableArray alloc] init];
    }
    NSMutableArray *array = [[NSMutableArray alloc] init];
    ... // Gather data from HTML source and parse it into "array"
    self.arrayOfClasses = array; //arrayOfClasses here is non-nil (with correct objects)
    NSLog(@"%@ test1", [self.arrayOfClasses objectAtIndex:0]);
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    NSLog(@"%@ test1.5", [self.arrayOfClasses objectAtIndex:0]);
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSLog(@"%@ test2", [self.arrayOfClasses objectAtIndex:0]);
    return [self.arrayOfClasses count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"%@ test3", [self.arrayOfClasses objectAtIndex:0]);
    static NSString *CellIdentifier = @"WebCollegeCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    cell.textLabel.text = [self.arrayOfClasses objectAtIndex:indexPath.row];
    return cell;
}

这是来自的输出NSLog

2012-11-24 22:52:19.125 ArizonaCollegeSearch[72404:c07] CSE 240 test1
2012-11-24 22:52:19.126 ArizonaCollegeSearch[72404:c07] CSE 240 test1.5
2012-11-24 22:52:19.127 ArizonaCollegeSearch[72404:c07] (null) test1.5
2012-11-24 22:52:19.127 ArizonaCollegeSearch[72404:c07] (null) test2

正如你所看到的,numberOfSectionsInTableView被一个非空对象调用,然后被一个空对象numberOfRowsInSection调用,被一个空对象调用,并且cellForRowAtIndexPath根本没有被调用。我什至没有[self.tableView reloadData]地方。

有什么建议么?

4

1 回答 1

1

所以需要声明保存数组的属性strong,否则当分配给它的变量被释放时,它将被释放。对于局部变量(您的NSMutableArray *array),这是其作用域的结束,例如当函数viewDidLoad返回时。

于 2012-11-25T06:28:54.137 回答