I use JSONModel to hold my app datasource, and use -(id)initWithArray:(NSArray *)array modelClass:(Class)cls
generated an JSONModelArray, now I want to do some search stuff like enumerateObjectsUsingBlock:
method does. But I found that JSONModelArray
is not inherited from NSArray
.
So, how can I do this?