Load image from bundle with iOS
That is correct, imageNamed:
will search your main bundle. Images in your project, even if they are in different groups in your Project Navigator will be in your main bundle and can be accessed directly by name.
If that does not work, try
[UIImage imageNamed:@"yourbundlefile.bundle/imageInBundle.png"];
Best