我试图用NSMutableArray填充tableview,但是我却很难过。

我在想这应该很简单,但是我无法使其正常工作。

任何帮助,将不胜感激。

谢谢

最佳答案

您只需创建一个实现UITableViewDataSource的对象。

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    /* create your cell here */

    AnObjectFromYourArray *myObject = [self.yourArray objectAtIndex:[indexPath row];

    /* fill the cell with the info in my object */

    return yourCell;
}


就那么简单。

格雷格

08-26 17:28