Try this:
NSArray *shotsArr = [json objectForKey:@"shots"];
NSMutableArray *allViewsCounts = [NSMutableArray array];
for (NSDictionary *shotDict in shotsArr) {
NSNumber *viewsCount = [shotDict objectForKey:@"views_count"];
[allViewsCounts addObject:viewsCount];
}
if you wish for only 10 objects in this array:
__block NSMutableArray *allViewsCounts = [NSMutableArray array];
[shotsArr enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
NSDictionary *shotDict = obj;
NSNumber *viewsCount = [shotDict objectForKey:@"views_count"];
[allViewsCounts addObject:viewsCount];
if (idx == 10) {
*stop = YES;
}
}];