10 Mar 2021 . 3 min read @gurjitpt Updated: 27 Apr 2023
You built your iOS app after lot of hard work and now is the time to list your app on App Store. When you list your app on App Store you need screenshots which shown on App Store. These screenshots plays huge role on app download.
When you upload screenshots make sure that iPhone screenshots must be capture in iPhone it shouldn’t taken in iPad and the same will apply on iPad screenshots otherwise your app will be rejected by App Store and shows status to “metadata rejected”.
Your screenshots must show core concept of your application. Because screenshots helps users to understand app’s functionality. You might be add promotional data in screenshots but it must maintain original UI of application.
Apple provide maximum 10 screenshots for each screen size and screenshots must be in PNG and JPG formats. You have to put one set of screenshots per device and it will be used in all devices with same sizes. If your app supports dark mode then you must upload at least one screenshot in dark mode to helps users how app will looks like in dark mode.
Now you have to upload for few device sizes and it will automatically scale for same device sizes. You have to upload screenshots for only following sizes:
You don't need real devices to capture screenshots it can be capture with simulater. The required simulaters for screenshots for above screen categories are iPhone 11 pro max, iPhone 8 plus, iPad Pro(3rd generation)
When you make your app always keep in mind that good screenshots helps your app to download more. You should always keep try to make good marketing strategy and promotions to increase downloads and make revenue from your app.
Don’t hesitate to contact me if you have any questions or queries. Follow me on twitter @gurjitpt for any updates.
Thanks!
WRITTEN BY
Gurjit Singh
I’m Computer Science graduate and an iOS Engineer who writes about Swift and iOS development. Follow me on twitter @gurjitpt for more updates.
Enumerations (enum) enables you to write code in a type safe way. Enum is very useful while defining common type of values. You don't have to provide...
Mar 7, 2023 . 2 min read Swift Enum
Optional unwrapping is one of the most used patterns in iOS development. Swift 5.7 introduces new features included a new way to unwrap optional values...
Jun 14, 2022 . 2 min read Optional unwrapping
It's a common pattern or technique in various programming languages when we want to perform some action when a value is changed. Property ...
May 24, 2021 . 2 min read Property Observers