This is how my Xcode project is structured.
To access the bs-better@2x.png
file, I can use the following code:
UIImage *cellIcon = [UIImage imageNamed:@"bs-better"];
This already works. However, for readability sake, I would like it if there's a way to include the grouping path in the code, something like:
UIImage *cellIcon = [UIImage imageNamed:@"Assets/Icons/bs/bs-better"];
Is this possible?