Post

Replies

Boosts

Views

Activity

Reply to UIApplication.shared.open iOS 18
It work: @objc @discardableResult func openURL(_ url: URL) -> Bool { var responder: UIResponder? = self while responder != nil { if let application = responder as? UIApplication { Task { @MainActor in application.open(url, options: [:], completionHandler: nil) } return true } responder = responder?.next } return false }
Topic: UI Frameworks SubTopic: UIKit
Jan ’25
Reply to Xcode 16 RC - Cannot add packages
I realized the problem is that I installed the app from the Appstore so it stuck. You just need to delete Xcode on your device following the instructions below: https://stackoverflow.com/questions/31011062/how-to-completely-uninstall-xcode-and-clear-all-settings Download Xcode dmg and install it: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_16/Xcode_16.xip It should work fine.
Sep ’24
Reply to Stuck on loading screen
I realized the problem is that I installed the app from the Appstore so it stuck. You just need to delete Xcode on your device following the instructions below: https://stackoverflow.com/questions/31011062/how-to-completely-uninstall-xcode-and-clear-all-settings Download Xcode dmg and install it: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_16/Xcode_16.xip It should work fine.
Sep ’24
Reply to framework 'CoreAudioTypes' not found
Because CoreAudioTypes is default Framework for iOS, so you don't need import it into your project. Remove CoreAudioTypes from frameworks, libraries, and embedded Content in General section. If you overrides the setting value in other Linker flags, please keep it to default(by press delete button). In my case:
Feb ’24
Reply to UIApplication.shared.open iOS 18
It work: @objc @discardableResult func openURL(_ url: URL) -> Bool { var responder: UIResponder? = self while responder != nil { if let application = responder as? UIApplication { Task { @MainActor in application.open(url, options: [:], completionHandler: nil) } return true } responder = responder?.next } return false }
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jan ’25
Reply to Xcode 16 RC - Cannot add packages
I realized the problem is that I installed the app from the Appstore so it stuck. You just need to delete Xcode on your device following the instructions below: https://stackoverflow.com/questions/31011062/how-to-completely-uninstall-xcode-and-clear-all-settings Download Xcode dmg and install it: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_16/Xcode_16.xip It should work fine.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Stuck on loading screen
I realized the problem is that I installed the app from the Appstore so it stuck. You just need to delete Xcode on your device following the instructions below: https://stackoverflow.com/questions/31011062/how-to-completely-uninstall-xcode-and-clear-all-settings Download Xcode dmg and install it: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_16/Xcode_16.xip It should work fine.
Replies
Boosts
Views
Activity
Sep ’24
Reply to framework 'CoreAudioTypes' not found
Because CoreAudioTypes is default Framework for iOS, so you don't need import it into your project. Remove CoreAudioTypes from frameworks, libraries, and embedded Content in General section. If you overrides the setting value in other Linker flags, please keep it to default(by press delete button). In my case:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Stage Manager on iPadOS Xcode Simulator
I am using simulator version ipad16 beta and it does not support.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to Can't delete App Id from a deleted App
sample problem.
Replies
Boosts
Views
Activity
May ’22
Reply to Is there a way to get Xcode 13 to show file extensions in the Project Navigator?
Xcode -> Preferences -> General -> File Extensions -> Show all.
Replies
Boosts
Views
Activity
Oct ’21