我有一个像这样创建的数组:
[currentQuizArrayQuestions insertObject:[quizArrayQuestions objectAtIndex:randomIndex] atIndex:0];
如何访问要在表格中显示的数据?
我正在尝试这个:
NSString *cellValue = [currentQuizArrayQuestions objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
我知道这是错的,但我如何找到存储在currentQuizArrayQuestions
数组中的数据数组对象。
答案 0 :(得分:0)
您需要实现cellForRowAtIndexPath方法。请参阅UITableViews上的本教程:http://adeem.me/blog/2009/05/19/iphone-programming-tutorial-part-1-uitableview-using-nsarray/
那个使用UITableViewController,但想法是一样的。
编辑:
要使用不同的数组,请使用索引路径方法中的行的单元格执行相同的操作,根据需要更改cellValues来自的数组。然后调用[tableView reload];将使用新数组的内容运行cellForRowAtIndexPath。