Jim
Jim

Reputation: 4719

Can I update my iphone application for iOS7 only?

I have developed application for iphone4/5 with iOS 7 support. Recently I found issue in that and wanted to update application only for iOS7.

Does Apple allow me to update application for iOS 7 only? Do i have to give support for iOS 8 right now?

Upvotes: 1

Views: 65

Answers (3)

DCMaxxx
DCMaxxx

Reputation: 2574

If you submit with Xcode 5.1.1, you'll compile with iOS 7's SDK (and your app will behave as it behaves currently).

If you submit with Xcode 6.0, you'll compile with iOS 8's SDK (and you'll have to update your app due to new API and possible bugs).

Upvotes: 2

CyberInfo
CyberInfo

Reputation: 240

use Xcode 5.1.1 if you want to fix issues only for iOS7 for time been and submit the app..but users might face issues if they are using iOS8 on their devices.

Upvotes: 1

pille
pille

Reputation: 1411

if I understood you correctly, I believe you should check in code for the user's iOS version and then update based on that. See How to check iOS version? how to do that.

Upvotes: 0

Related Questions