我一直在尝试使用 JSONmodel 尝试将数据从我的服务器获取到我的 ios 设备。我已经正确设置了我的课程,但由于某种原因,它在调用 url 后一直返回 null。
feed = [[Feeds alloc] initFromURLWithString:@"http://http://www.cs4768project.net76.net/untitled.php?action=getShops"
completion:^(JSONModel *model, JSONModelError *err) {
NSLog(@"reached");
//json fetched
NSLog(@"shops: %@", feed.shops);
这是保存提要的模型
@interface Feeds : JSONModel
@property(strong,nonatomic) NSArray* shops;
@end
和我的咖啡店课一起
@interface CoffeeShop : JSONModel
@property(strong, nonatomic) NSString* name;
@property(nonatomic) CLLocationDegrees latitude;
@property(nonatomic) CLLocationDegrees longtitude;
@end
json输出:
{"name":"Starbs","latitude":"45","longtitude":"-52"}
我一直在尝试寻找解决方案,但一无所获,我很困惑为什么这不起作用。任何帮助都是极好的。