Reputation: 5566
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.
"Target Membership" is set for all images to: my app, Extension, and WatchKit App
The images are in the "Supporting Files" directory of the WatchKit App.
I didn't add anything to "Images.xcassets"
All app icons display correctly FWIW
Upvotes: 1
Views: 985
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.xcassets
one for main app and one for watch app.
Upvotes: 1