Last active
November 7, 2024 18:45
-
-
Save CreatureSurvive/75faeb943b8951ced44ed28cde227e95 to your computer and use it in GitHub Desktop.
Revisions
-
CreatureSurvive revised this gist
Nov 8, 2018 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,7 @@ /* * usage: * [self objectForKeypath:@"someKey.3.someNestedKey.2" inJSON:myJSONObject]; */ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { if (!keypath || !json) {return nil;} -
CreatureSurvive revised this gist
Nov 8, 2018 . 1 changed file with 3 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,11 +3,7 @@ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { __block NSInteger depth = 0; NSArray *keys = [keypath componentsSeparatedByString:@"."]; id result = [NSJSONSerialization JSONObjectWithData:json options:kNilOptions error:nil]; id (^objectAtPath)(NSString *, id) = ^id(NSString *path, id collection) { if (collection) { @@ -26,11 +22,10 @@ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { }; while (depth < keys.count) { if (!result) { return nil; } result = objectAtPath(keys[depth], result); } return result; -
CreatureSurvive revised this gist
Nov 8, 2018 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,11 +14,11 @@ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { depth++; if ([collection isKindOfClass:[NSDictionary class]]) { return [(NSDictionary *)collection objectForKey:path]; } else if ([collection isKindOfClass:[NSArray class]]) { return [(NSArray *)collection objectAtIndex:[path integerValue]]; } } @@ -34,4 +34,4 @@ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { } return result; } -
CreatureSurvive created this gist
Nov 8, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ - (id)objectForKeypath:(NSString *)keypath inJSON:(NSData *)json { if (!keypath || !json) {return nil;} __block NSInteger depth = 0; NSArray *keys = [keypath componentsSeparatedByString:@"."]; id result = json; id (^collection)(id) = ^id(id data) { return [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil]; }; id (^objectAtPath)(NSString *, id) = ^id(NSString *path, id collection) { if (collection) { depth++; if ([collection isKindOfClass:[NSDictionary class]]) { return collection[path]; } else if ([collection isKindOfClass:[NSArray class]]) { return collection[[path integerValue]]; } } return nil; }; while (depth < keys.count) { id data = collection(result); if (!data) { return nil; } result = objectAtPath(keys[depth], data); } return result; }