gmoore
gmoore

Reputation: 5566

Images Not Appearing in WatchKit App

I have a small WatchKit app with six images on the main interface. When I run the app in my simulator on my machine, the images appear and everything works.

I submitted the app for review and the review was rejected with a screenshot of the app that had no images. I can only guess that the images aren't making it into the archive.

Details: * I'm working in Xcode 6.3.

Upvotes: 1

Views: 985

Answers (1)

Nicolas S
Nicolas S

Reputation: 5365

Make sure your images are on the Watch bundle and not on the main app bundle.

As far as I know, you have to set the images that will be displayed on the watch on an Images.xcassets inside the Watch App. Not the Main App nor the Extension.

I have two Images.xcassetsone for main app and one for watch app.

Upvotes: 1

Related Questions