I have a big amount of images in a Images.xcassets and I need to load them all in a UITableView. But I don't wat to write each name for the [UIImage imageNamed:@"imageName"]
.
What i'm looking for is something like:
NSArray *images = [MagicClass loadAllImagesIn:@"images.xcassets"];
Do you know if this is even possible? If not maybe i'll create a .bundle...
Thanks!!