I'm trying to use an ImageAssets folder to a static library. I've read every post I could find about the process. I was following these steps from apple's guide
My steps were:
- Create a Resource folder in the project directory.
- Renamed it as a .bundle
- Added an ImageAssets folder into the bundle
- Add it to the project
- Add it the 'copy bundle resources' build phase
When I try to access an image inside:
UIImage* img = [UIImage imageNamed:@"BackLight"];
it's not found.
- I've also tried to add ImageAssets folder directly to the project and add it to the 'copy bundle resources' phase with same results.
Additional info:
- Xcode 6.3.1
- Obj-C