Contents

supportsMultipleScenes

A Boolean value that indicates whether the app may display multiple scenes simultaneously.

Declaration

var supportsMultipleScenes: Bool { get }

Discussion

UIKit sets this property to true when the system allows the app to display multiple scenes and the app’s Info.plist file includes the UIApplicationSupportsMultipleScenes key with a value of true. If either of those conditions isn’t true, the value of this property is false.

Use the connectedScenes property to determine whether multiple scenes are present.

See Also

Getting scene information