hlow i new in iPhone dev i want to display select array with json to mysql in xcode4 i have output json code in php like this:
{"data":[{"id":"16","nama":"yes","desk":"test2","gambar":""}]}
and my code module like this:
list.m
- (void)viewDidLoad
{
AIR = [[NSMutableArray alloc] init];
NSURL *url = [NSURL URLWithString:@"http://192.168.0.169/demo/json/rifle.php"];
NSString *jsonreturn = [[NSString alloc] initWithContentsOfURL:url];
NSLog(jsonreturn);
NSData *jsonData =[jsonreturn dataUsingEncoding:NSUTF8StringEncoding];
NSError *error =nil;
NSDictionary *dict =[[CJSONDeserializer deserializer]deserializeAsDictionary:jsonData error:&error];
if (dict) {
AIR = [[dict objectForKey:@"data"] retain];
}
NSLog(@"Array:%@",AIR);
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [AIR count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSDictionary *dict = [AIR objectAtIndex:indexPath.row];
// deklarasi image ambil file gambar didalam field nama
cell.textLabel.text = [dict objectForKey:@"nama"];
// deklarasi image ambil file gambar didalam field desk
cell.detailTextLabel.text = [dict objectForKey:@"desk"];
// deklarasi image ambil file gambar didalam field gambar
UIImage *cellImage =[UIImage imageNamed:[dict objectForKey:@"gambar"]];
cell.imageView.image = cellImage;
return cell;
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
subway *mAIR = [[subway alloc] initWithNibName:@"subway" bundle:nil];
[mAIR setTitle:@"AIRGUN DESC DETAIL"];
[self.navigationController pushViewController:mAIR animated:YES];
[mAIR release];
}
in subway is the other tableView iniNibName subway n now my question how can i get $id (see json code) for select array if in php like this comment
SELECT * FROM data where id="$id"
so if i select list NIB they will display output in subway NIB
can help me please
thx before
