按照这个 JSONModel 的例子
#import "CountryModel.h"
...
NSString* json = (fetch here JSON from Internet) ...
NSError* err = nil;
CountryModel* country = [[CountryModel alloc] initWithString:json error:&err];
我这样模仿
// 这里是类#import "JSONModel.h"
@interface OrderNumberModel : JSONModel
@property (strong, nonatomic) NSString* OrderNumber;
@property (strong, nonatomic) NSString* OrderDate;
@end
NSString* json = (fetch here JSON from Internet) ...
NSError* err = nil;
OrderNumberModel *order = [[OrderNumberModel alloc] initWithString:result error:&err];
NSLog(@"Order Number: %@ Order Date: %@", order.OrderNumber, order.OrderDate);
如果类 init 方法是 initWithString 我怎样才能获取 json 作为字符串?我见过的大多数例子都是 NSData。我的本地服务器方法的 url 返回一个新的 orderNumber 和当前日期。NSURL *url = [NSURL URLWithString:@"http://myserver/service/api/punumber/"]
返回 =>["13025","11/12/2013 2:26:24 PM"] 谢谢。