Post

Replies

Boosts

Views

Activity

Reply to Are OpenGL and OpenCL supported on Apple silicon?
Hi, OpenGL is deprecated since years now : macOS Mojave (2018), but no kill date is known. But yeah, it works on M1 (natively for arm64 apps or via Rosetta for x86 apps with some performances drawbacks). I can't assure that it the same for OpenCL. Note that "new" app technologies (like Catalyst for example) does not work with Open GL.
Topic: Graphics & Games SubTopic: General Tags:
Nov ’21
Reply to Consecutive statements on a line must be separated by ';'
Hi, you can do that : let scoreDecoration: String if teamScore > 10 { scoreDecoration = "🎉" } else { scoreDecoration = "" } Or use ternary operator : let scoreDecoration = teamScore > 10 ? "🎉" : ""
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’23
Reply to Shared App Group with compiled binary framework provided to 3rd party developers
Hi, App Group is designed to be a shared container for multiple apps from the same team. It's an app capability so I don't think you can apply it to a compiled binary framework.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to How to downgrade iPad from iPadOS 16.4 to iPadOS 16.2
Hello, You need a signed iOS firmware (aka .ipsw file) to restore your device at a specific version. But when a new iOS version is released, older version is quickly unsigned (quickly mean few days after newly version is released). Moreover, restoration will lead to a loose of data. You should have a backup.
Replies
Boosts
Views
Activity
May ’23
Reply to : Is there an API for displaying a list of Keychain items using Touch ID? In macOS
Hi, It seems that you want implement password autofill feature. But I think you have to implement app’s associated domains before. You should take a look at https://developer.apple.com/documentation/security/password_autofill/
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to In which countries/regions does Tap to Pay work?
Hello, Unfortunately Tap to Pay is currently only available in the United States and Taiwan.
Replies
Boosts
Views
Activity
May ’23
Reply to Cannot download XCode due to program update
Hi, On Apple developer website you can download older versions of Apple software (including Xcode) : https://developer.apple.com/download/all/
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to 16.4.1(a) App Launch Delay
Same behavior here (on iPad Pro 2020), delay occur only with Xcode run.
Replies
Boosts
Views
Activity
May ’23
Reply to Are OpenGL and OpenCL supported on Apple silicon?
Hi, OpenGL is deprecated since years now : macOS Mojave (2018), but no kill date is known. But yeah, it works on M1 (natively for arm64 apps or via Rosetta for x86 apps with some performances drawbacks). I can't assure that it the same for OpenCL. Note that "new" app technologies (like Catalyst for example) does not work with Open GL.
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21