I have a JSON string like the following
[["Exampe_Level0_1","Exampe_Level1_1","Exampe_Level2_1","Exampe_Level3_1","Exampe_Level4_1","Exampe_Level5_1"],["Exampe_Level0_2","Exampe_Level1_2","Exampe_Level2_2","Exampe_Level3_2","Exampe_Level4_2","Exampe_Level5_2"]]
I also have a class
ExampleClass.h
#import <Foundation/Foundation.h>
@interface ExampleClass : NSObject
@property(nonatomic, strong)NSString *Level0;
@property(nonatomic, strong)NSString *Level1;
@property(nonatomic, strong)NSString *Level2;
@property(nonatomic, strong)NSString *Level3;
@property(nonatomic, strong)NSString *Level4;
@property(nonatomic, strong)NSString *Level5;
@end
Obviously in the JSON string, the first item in array is ExampleClass Level0, second item in array is ExampleClass Level1 etc.
Ideally i want to convert the JSON data into a format into either a NSMutableArray to NSDictionary. Im just lost as to how to convert it.
Thanks