0

我尝试将数据分离到:</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"}];
4

0 回答 0