如何在加载应用程序时直接将数据从sqlite3数据库加载到UITable?

时间:2011-02-14 05:25:59

标签: iphone sqlite uitableview

您好 我已经在sqlite3数据库中存储了一些数据,我正在检索它,并保存到数组但现在我想在UITable中加载应用程序时显示数据,我该怎么办?

1 个答案:

答案 0 :(得分:1)

在数组中检索数据后,可以使用reloadData方法在表视图中重新加载数据。对于前。

[yourTableView reloadData];

确保numberOfRowsInSection..返回数组计数,例如,

[arrData count];

cellForRowAtIndexPath..委托方法中,显示array..like

中的数据

cell.textLabel.text = [arrData objectAtIndex:indexpath.row];

我希望,这有帮助