我从sqlite表中检索数据并将其填入tableview
//get notes saved to database
NSString *selectQuery=@"select * from ATTACHABLEITEM where ATYPE='notes'";
NSArray *notesarray=[delegate.database executeQuery:selectQuery];
[table dictionaryWithValuesForKeys:notesarray];
this is going wrong.what is the right way to do so?
答案 0 :(得分:1)
表视图是iOS开发的主要内容。你应该花时间学习如何使用它们。
您会发现以下资源有用:
基本上,您创建一个表视图并设置响应某些方法的委托和数据源对象。这些方法与表视图的配置和内容有关。对于在给定索引处显示的数据,“咨询”了dateource。