I have 400 images with repeating names, hierarchically divided among folders which i have included in my project, now i want to load images with the absolute path, I tried using imagenamed
but instead of images being load, empty box is showed. Now I need a little help in how can i show images using absolute path.
Hierarchy of my project
Project
-> Project Files (i-e App Deligate and view controllers)
-> Resources
->Images
->1
->1.jpg
->2.jpg
->3.jpg
->2
->1.jpg
->2.jpg
->3.jpg
Method i am using to load images
[self.leftImage setImage:[UIImage imageNamed:@"Images/1/1.jpg"] forState:UIControlStateNormal];
and so on... Any one, help. Regards