Post

Replies

Boosts

Views

Activity

Reply to Give multiple users Account Holder permissions
Hello, I confirm that Agent Role (aka Account Holder) is unique in your developer account but you have multiple other roles available to grant the right access to the right people in your organization (and all of these roles can be attribute to as much as necessary collaborators) In your case, Administrator roles can be given to multiples people and give nearly all access to your account. For references to all roles and permission : https://developer.apple.com/support/roles/
Feb ’22
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) } } }
Jun ’21