NSMutableArray未在UITableView中显示

时间:2012-11-25 06:08:53

标签: objective-c uitableview

在我的标题文件中:

@interface HTMLClassesViewController : UITableViewController <UITableViewDataSource, UITableViewDelegate>

所以我确实声明了dataSourcedelegate

在我的实施文件中:

- (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

如您所见,使用非null对象调用numberOfSectionsInTableView,然后使用null对象调用numberOfRowsInSection,并使用null对象调用cellForRowAtIndexPath[self.tableView reloadData]根本没被召唤。我在任何地方都没有{{1}}。

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

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