Nick Marinov
Nick Marinov

Reputation: 148

Submitting an app only for iPhone 5/5s/5c

I've worked on my application for a couple of months, I hired a designer to do the UI and every screen in the app is based on 3 main elements - top bar, bottom bar and content. I tried to use auto-layout and setting the top and the bottom bar was a piece of cake, but the image I use for a background in the content view shouldn't be resized (it's based on circles and they turn into ellipses). Is there a way for me to submit the app only for the iPhone 5/5s/5c?

Upvotes: 0

Views: 178

Answers (1)

Nerrolken
Nerrolken

Reputation: 2005

You can't specify device types within the iPhone category. Your best bet is either to design a layout that can work for both screen sizes, re-design the layout so it automatically displays a "4S version" and a "5 version" depending on the user's device, set it to a ScrollView so the user just scrolls up and down to see the full page, or design it so the individual elements can be cropped (or squeezed together) on the smaller screen without actually resizing the individual pieces.

Upvotes: 1

Related Questions