NSObject和TableView调用

时间:2012-06-20 22:36:22

标签: iphone uitableview nsobject

在viewDidLoad中,我有这段代码:

ProvRec *provRec = [[ProvRec alloc]init];
provRec.status = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement,3)
                            ];
provRec.desc = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement,4)
                            ];
[listOfItems addObject:provRec];

我应如何调用在TableView中显示这些记录 cellForRowAtIndexPath:(NSIndexPath *)indexPath

1 个答案:

答案 0 :(得分:2)

实现目标的方法是实施table view datasource protocol。最关键的方法如下:

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

    static NSString *CellIdentifier = @"Cell";

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

    ProvRec *provRec = [listOfItems objectAtIndex:indexPath.row];
    cell.textLabel.text = provRec.status;
    cell.detailTextLabel.text = provRec.desc;
    return cell;
}

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

    return [listOfItems count];
}

如果表中有多个部分,或者视图中有多个表,则会有变化。但这是基本的想法。