Before the query I create an array. After the query I do
Code:
NSString *NameField = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 1)];
[myArray addObject:NameField];
I don't understand how I would go about adding another value to my array. I come from a web background and understand multidimensional arrays but I do not know the syntax to create one in Cocoa. That's why I asked if there was a way to setup the view picker like a select box on the web -- the label being different from the value.