I am searching for Xcode 13 on https://developer.apple.com/download/all/ where I can see other tools to support Xcode 13 are available for downloads, but Xcode 13 itself.
I can see Xcode 13 is available in App Store.
Also somewhere else I can see download option, but clicking on that not redirecting to the right path.
One more thing, I noticed is that Xcode 13 is not listed under the support directory as well.
I am curious to know why Xcode 13 is not available for download on the official site?
Definitely, I can download from the App Store, but on my organization system App Store is not accessible for security concerns. So using the official website is the only option to download the latest Xcode - 13.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am trying to open from my keyboard extension. I am having custom keyboard and I have add that keyboard from setting. On my custom keyboard there is one button “Show More”, and I want to open my app on this button click.So I have tried following code :let context = NSExtensionContext()
context.open(url! as URL, completionHandler: nil)
var responder = self as UIResponder?
while (responder != nil) {
if responder?.responds(to: Selector("openURL:")) == true {
responder?.perform(Selector("openURL:"), with: url)
}
responder = responder!.next
}It is working successfully, but as we know in swift Selector("method_name:") is deprecated and use #selector(classname.methodname(_:)) instead so it is giving warning. And I want to solve that warning. So I have tried as Xcode automatically suggested :if responder?.responds(to: #selector(UIApplication.openURL(_:))) == true {
responder?.perform(#selector(UIApplication.openURL(_:)), with: url)
}Also tried :if responder?.responds(to: #selector(NSExtensionContext.open(_:))) == true {
responder?.perform(#selector(NSExtensionContext.open(_:)), with: url)
}I have also tried others possible ways, but no luck. If anyone know how to do, please let me know.I referred this link, Julio Bailon’s answer : openURL not work in Action Extension