skip to Main Content

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


  1. Chosen as BEST ANSWER

    Ok i solved it myself.

    For anybody wondering I just added the .png file manually to the copy bundle resources in build phases


  2. 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 issue self.imageview.image = [UIImage imagenamed:@"image.png"]; and ready!

    Hope it helps!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search