I am creating a basic app in Xcode the graphics were designed in photoshop and exported as .png files
The first image worked fine but the second image (very similar to first does not show up)
Would appreciate any help with this
I am creating a basic app in Xcode the graphics were designed in photoshop and exported as .png files
The first image worked fine but the second image (very similar to first does not show up)
Would appreciate any help with this
2
Answers
Ok i solved it myself.
For anybody wondering I just added the .png file manually to the copy bundle resources in build phases
I recently had this same problem, I solve it turning off Auto-Layout and positioning the imageview by the code
self.imageview.frame = CGRectMake(x,y,with,height);
, aslo add the image by the code to prevent any issueself.imageview.image = [UIImage imagenamed:@"image.png"];
and ready!Hope it helps!