Hi guys
I am using Compose multiplatform - Kotlin 2.0.20 and XCode 16.
In iOS 18, I need to use *`UIApplication.sharedApplication().open(_optionscompletionHandler:)`*but it is not available in
UIApplication
.
In my Platform.ios.kt, I have this import
Platform.UIApplication
which is apparently built from ObjectiveC using Cinterop tool that supports calling ObjectiveC code from Kotlin.
So basically Kotlin just provides the API that Apple has added to their iOS SDK.
How to update the set of API from the latest iOS SDK?
thanks a lot