-
Run your iPad and iPhone apps in the Shared Space
Discover how you can run your existing iPad and iPhone apps on Vision Pro. Learn how iPadOS and iOS apps operate on this platform, find out about the Designed for iPad experience, and explore the paths available for enhancing your app experience on visionOS.
Capítulos
- 1:54 - Built-in behaviors
- 4:01 - Functional differences
- 10:03 - Choose your experience
Recursos
Videos relacionados
WWDC23
- Elevate your windowed app for spatial computing
- Enhance your iPad and iPhone apps for the Shared Space
- Evolve your ARKit app for spatial experiences
- Explore App Store Connect for spatial computing
- Meet Core Location for spatial computing
- Meet SwiftUI for spatial computing
- Meet UIKit for spatial computing
-
Buscar este video…
-
-
4:37 - Default orientation Info.plist key
UIPreferredDefaultInterfaceOrientation -
5:03 - Supported orientations Info.plist key
UISupportedInterfaceOrientations -
5:13 - Required capabilities Info.plist key
UIRequiredDeviceCapabilities -
7:59 - Look to Dictate enablement
// SwiftUI @State private var searchText = "" var body: some View { NavigationStack { Text("Query: \(searchText)") } .searchable(text: $searchText) .searchDictationBehavior(.inline(activation: .onLook)) } // UIKit let searchController = UISearchController() searchController.searchBar.isLookToDictateEnabled = true
-