Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. -(NSArray*)paletteItems{
  2. NSMutableArray* paletteItemsArray = [NSMutableArray array];
  3. for(NSNumber* blockIndex in [[[dataSource objectForKey:@"categories"] objectAtIndex:selectedCategory] objectForKey:@"members"]){
  4. [paletteItemsArray addObject:[self getItemAtVirtualIndex:[blockIndex intValue]]];
  5. }
  6. return paletteItemsArray;
  7. }
Add Comment
Please, Sign In to add comment