我一直在使用JSONModel,这些教程很有意义。他们解析JSON包含一个包含多个索引的数组。
我想确保允许JSONModel与此数据集一起使用:https://gist.github.com/ryancoughlin/8043604
tide
数组不正确吗?但是有tide.tideSummary
- 其中包含多天的潮汐数据数组。
的 AllTide.h 的
#import "JSONModelLib.h"
#import "Tide.h"
@interface AllTide : JSONModel
@property (strong,nonatomic) NSDictionary<Tide> *tide;
@end
的 Tide.h 的
#import "JSONModelLib.h"
#import "TideSummaryStats.h"
@protocol Tide @end
@interface Tide : JSONModel
@property (nonatomic, strong) NSArray<TideSummaryStats> *tideSummaryStats;
@end
的 TideSummaryStats.h 的
#import "JSONModelLib.h"
@protocol TideSummaryStats @end
@interface TideSummaryStats : JSONModel
@property (nonatomic, strong) NSString *maxheight;
@property (nonatomic, strong) NSString *minheight;
@end
TideDetailViewController - 显示单个位置(详情视图)与多个位置列表
@interface TideDetailViewController () {
AllTide *_objTide;
}
@end
@implementation TideDetailViewController
- (void)viewDidAppear:(BOOL)animated {
NSString *locationQueryURL = @"http://api.wunderground.com/api/xxxxx/tide/geolookup/q/43.5263,-70.4975.json";
//fetch the feed
_objTide = [[AllTide alloc] initFromURLWithString:locationQueryURL completion:^(JSONModel *model, JSONModelError *err) {
NSLog(@"Tides: %@", _objTide.tide);
}];
}
已经完成了几个JSONModel教程,这很有意义,我认为我的JSON格式与教程有所不同。同样,我的tide
没有返回数组。
使用JSONModel keymapper会是一个好例子吗?
有什么想法吗?如果我能提供其他任何信息,请告诉我。一直在潜水一些指导,但有点卡住。提前谢谢!
答案 0 :(得分:0)
您不需要 AllTide.h
试试这个:
TideDetailViewController - 显示单个位置(详细信息视图)与多个位置列表
@interface TideDetailViewController () {
NSArray *arrTide;
}
@end
@implementation TideDetailViewController
- (void)viewDidAppear:(BOOL)animated {
NSString *locationQueryURL = @"http://api.wunderground.com/api/xxxxx/tide/geolookup/q/43.5263,-70.4975.json";
//fetch the feed
[JSONHTTPClient getJSONFromURLWithString: locationQueryURL
completion:^(NSDictionary *json, JSONModelError *err) {
arrTide = [TideSummaryStats arrayOfModelsFromDictionaries:json[@"tide"][@"tideSummaryStats"] ];
NSLog(@"Tides: %@", arrTide[0]);
}];
}