私はiOS開発の初心者です。データベースからオブジェクトを追加して、に入れて、に表示しNSMutabledictionary
たいと思います。以下は私の.mファイルコードです:NSMutableArray
UITableView
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
jsonURL = [NSURL URLWithString:@"http://localhost:8888/read_product_list.php"];
//jsonData = [[NSString alloc] initWithContentsOfURL:jsonURL];
NSData *data = [NSData dataWithContentsOfURL:jsonURL];
[self getData:data];
}
-(void) getData:(NSData *) response {
NSError *error;
NSMutableDictionary *json = [NSJSONSerialization JSONObjectWithData:response options:kNilOptions error:&error];
//NSLog(@"%@", json);
jsonArray = [[NSMutableArray alloc] init];
/*for(int i = 0; i < json.count; i++){
[jsonArray addObject:[json objectForKey:];
}*/
//NSLog(@"%@", jsonArray);
}
前もって感謝します!