データを次のように分離しようとしています:</ p>
NSLog(@"shelf_id=%@", shelf_id);
NSLog(@"http_url=%@", http_url);
NSLog(@"shelf_date=%@", shelf_date);
サーバーのstart_dateとend_dateを取得し、サーバーからjson形式を取得します
これは私のコードです:
+ (NSString* ) loadCoverPage {
NSString *urlStr = [NSString stringWithFormat:@"http://apps.play.com/iphone/porfile/get_pic_list.jsp?start_date=%@& end_date=%@", [CalTools getValueforKey:@"SelectYMD" DefValue:@""], [CalTools getValueforKey:@"SelectYMD" DefValue:@""]];
NSLog(@"loadpicbg url=%@", urlStr);
HttpTools *httpTools = [[HttpTools alloc] init];
NSString *returnstr = [httpTools simpleGet:urlStr];
NSLog(@"returnstr = %@", returnstr);
}
これは、サーバーAPIからのリンクjson形式です。
[{"size":1},{"shelf_id":"1","http_url":"http://down.play.com/shelf/pic/jpg/640x960/64.jpg","shelf_date":"20120601"}];