NSString *query = @"select id from info";
// Get the results.
if (self.arrPeopleInfo != nil) {
self.arrPeopleInfo = nil;
}
self.arrPeopleInfo = [[NSArray alloc] initWithArray:[self.dbManager loadDataFromDB:query]];
// Reload the table view.
//[self.tblPeople reloadData];
/*_maintitle = @[@"Title 1",
@"Title 2",
@"Title 3",
@"Title 4",
@"Title 5",
@"Title 6",
@"Title 7"];*/
NSArray *allval = _arrPeopleInfo;
NSLog(@"%@", allval);
在上面的代碼中,我希望把所有的ID從數據庫中提取,並像_maintitle數組所有ID。我取出由表中的數據從sqlite的Xcode和我想只插入ID列在一個數組
哪裏這個'_maintitle'從何而來?它也在數據庫中嗎? – trojanfoe 2014-09-22 11:53:02
不,它只是一個恆定值的staic陣列 – 2014-09-22 11:55:04
什麼是「ID」?我們看不到您的查詢,我們沒有看到數據庫佈局,也沒有看到類似「id」的名稱。 (好的,我看到隱藏在那裏的查詢,格式不正確。) – 2014-09-22 12:04:13