Game World!

Join A World Of Gamers

Enter your email address:

Delivered by FeedBurner

Followers

Popular Posts

Monday, 28 June 2021

How do I change Iphone deployment target?

 When you create a new project in Xcode 11, it will setup the project for deployment target of iOS 13. If you want to support iOS prior to iOS 13, there are a few steps you need to do.

Change deployment target

Select your app target and go to General tab, under Deployment Info change target to whatever version you want to support.

Deployment target

@available all the things!!

Since Xcode assume your project will be iOS 13, it created many things that are not compatible with iOS 12, e.g. SceneDelegate.swift.

So these are files you need to change to make it support old version of iOS.

  1. SceneDelegate.swift
    Add availability attributes to this whole class since this UIWindowSceneDelegate is for iOS 13 or greater.
@available(iOS 13.0, *)
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
...
}
  1. AppDelegate.swift
    In AppDelegate.swift there are two new UIApplicationDelegate methods that we need to Add @available(iOS 13.0, *)
// MARK: UISceneSession Lifecycle
@available(iOS 13.0, *)
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
...
}

@available(iOS 13.0, *)
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
...
}

And the last step is to UIWindow variable back to AppDelegate

class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
}

Conclusion

I don't remember Apple has an option to select deployment target in Xcode before, but since the introduction of iOS 13, as you can see, there is breaking changes. This breaking changes and not so straight forward modification might not be a problem for experienced developers, but I can see it might confuse beginners.

Hopefully, in the future, Apple will ask for the deployment target when creating a new project and prepare files needed for that target.

Reference


Read more article about XcodeiOS13Storyboard, or see all available topic

Floating Button

Button