I have developed an iOS app in which i am using very large no of .png images for that i have created a SQLite database of the name of that images i took image name from that database and load image, i have added all the images into the Supporting Files folder of my projects,
when i run the program in simulator it runs perfectly but when i tested that same project on my iPhone 5 the program runs but the images could not seen the error said that could not find the file
My code to retrieve image is below
NSBundle *dataBundle = [NSBundle mainBundle];
retriving image name from SQLite database
NSString *imagename= [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement, 6)];
Loading the Image in my imageview
NSString *imgPath = [dataBundle pathForResource:imagename ofType:@"png"];
UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgPath];
[self.showImg setImage:img];
This code works perfectly on iOS simulatore 5.1 & iOS simulatore 6.0 in both screen size but it did not work on iPhone 5
I think that the problem is that images are not copied in my iPhone, so can anybody has solution and how to attach this all images in my archive

