陣列我有一個這樣創建數組:顯示在UITableView的
[currentQuizArrayQuestions insertObject:[quizArrayQuestions objectAtIndex:randomIndex] atIndex:0];
如何訪問其數據在表格中顯示?
我想這一點:
NSString *cellValue = [currentQuizArrayQuestions objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
我知道這是錯誤的,但我怎麼去存儲在currentQuizArrayQuestions
數組中的數據數組對象。
你能解釋你目前看到的是什麼嗎? –