I have data in a server that I want to store in my app when the app is loaded. I tried to do it with JSON and SQLite, but I can't succeed. Is there anyone who has an example of code to show me the full process of get the data by JSON, convert it to an array and then automatically save all data in SQLite table? Here is the code I already have. I succeed to get the json and to put it in the array, but I don't know how to make a loop that will put everything in a sqlite table. (The url is just for the example, I can't explore the real url)
- (void)viewDidLoad
{
[super viewDidLoad];
//Use json to get the data of the sensors
NSURL *url = [[NSURL alloc] initWithString:@"http://zacandcatie.com/YouTube/json.php"];
NSError *error = nil;
NSStringEncoding encoding;
NSString *mySensors = [[NSString alloc] initWithContentsOfURL:url
usedEncoding:&encoding
error:&error];
if ([mySensors length]==0){
[mySensors release];
return;
}
SBJsonParser *parser = [[SBJsonParser alloc]init];
arrSensors = [[parser objectWithString:mySensors error:nil] copy];
[parser release];
NSLog(@"Imported Sensors: %@", arrSensors);