我正在尝试使用NSMutableArray填充tableview,并且我很难用它。
这应该很简单我在思考,但我无法让它发挥作用。
任何帮助都将不胜感激。
由于
答案 0 :(得分:1)
您只需创建一个实现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;
}
这很简单。
格雷格