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 When does the small business program will stop ?
Does apps created during small business program will have 30% fees or only future apps ? 15% fees apply to all apps distribute with your account during all the time your are under Small Business Program. App creation date is not related to fees, the only thing to know is : 15% fees if you are under Small Business Program 30% otherwise (excluding subscription in-app exceptions if more than 1 year that is 15%). The program stop as soon as the 1million dollars are reached or after a year of small business program ? The program stop as soon as the 1 million USD threshold is reached, so first million will be at 15%, next at 30% fees. The threshold is an account threshold not an app threshold. For all informations, refers to https://developer.apple.com/app-store/small-business-program/
Sep ’21
Reply to Set button border according to light/dark mode
It seems correct to put it in UIButton extension, but I am not sure that traitCollectionDidChange is a solution because you are not in your app when trait changement occurred and so your code is not executed. Using sort of dynamic color seems to be a better option. Define a light and dark color in your Color Set if you use Asset Catalog or use UIColor init(dynamicProvider:) initializer. Something like this : static var myBorderColor: UIColor { if #available(iOS 13.0, *) { return UIColor { (traits) -> UIColor in // Return one of two colors depending on light or dark mode return traits.userInterfaceStyle == .dark ? UIColor(red: 0.5, green: 0.4, blue: 0.3, alpha: 1) : UIColor(red: 0.3, green: 0.4, blue: 0.5, alpha: 1) } } else { // iOS 12 and earlier, no dark mode return UIColor(red: 0.3, green: 0.4, blue: 0.5, alpha: 1) } } }
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’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
Reply to When does the small business program will stop ?
Does apps created during small business program will have 30% fees or only future apps ? 15% fees apply to all apps distribute with your account during all the time your are under Small Business Program. App creation date is not related to fees, the only thing to know is : 15% fees if you are under Small Business Program 30% otherwise (excluding subscription in-app exceptions if more than 1 year that is 15%). The program stop as soon as the 1million dollars are reached or after a year of small business program ? The program stop as soon as the 1 million USD threshold is reached, so first million will be at 15%, next at 30% fees. The threshold is an account threshold not an app threshold. For all informations, refers to https://developer.apple.com/app-store/small-business-program/
Replies
Boosts
Views
Activity
Sep ’21
Reply to Can i create an apple developer account with gift card
Hello, According to https://developer.apple.com/support/app-account/ Store credit is not accepted as a form of payment for Apple Developer Program memberships.
Replies
Boosts
Views
Activity
Sep ’21
Reply to Install an own app permanent
Permanently does not really exist outside on the Appstore : to install an app, it must be signed and all certificates have an expiration date, with no exception.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Set button border according to light/dark mode
It seems correct to put it in UIButton extension, but I am not sure that traitCollectionDidChange is a solution because you are not in your app when trait changement occurred and so your code is not executed. Using sort of dynamic color seems to be a better option. Define a light and dark color in your Color Set if you use Asset Catalog or use UIColor init(dynamicProvider:) initializer. Something like this : static var myBorderColor: UIColor { if #available(iOS 13.0, *) { return UIColor { (traits) -> UIColor in // Return one of two colors depending on light or dark mode return traits.userInterfaceStyle == .dark ? UIColor(red: 0.5, green: 0.4, blue: 0.3, alpha: 1) : UIColor(red: 0.3, green: 0.4, blue: 0.5, alpha: 1) } } else { // iOS 12 and earlier, no dark mode return UIColor(red: 0.3, green: 0.4, blue: 0.5, alpha: 1) } } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to How know previously released app updates's build numbers?
In the Testflight tab, you can watch all the builds that you have upload.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21