Post

Replies

Boosts

Views

Activity

Reply to Ios 18.0
Bem-vindo ao fórum Mais informações aqui: https://support.apple.com/en-au/108763 De futuro, é melhor evitar instalar versões beta, a menos que seja um utilizador experiente. Get details here: https://support.apple.com/en-au/108763 In the future, you should probably avoid installing betas unless you are an experienced user.
Jul ’24
Reply to Casino app appears on appstore
Gambling apps are not forbidden nor censored but strictly controlled. See guidelines 5.1.1: (ix) Apps that provide services in highly regulated fields (such as banking and financial services, healthcare, gambling, legal cannabis use, and air travel) or that require sensitive user information should be submitted by a legal entity that provides the services, and not by an individual developer. Do you know if those apps follow those rules ? If you know they don't (but how could you ?), you could file a bug report.
Jul ’24
Reply to Difference between private and fileprivate?
You'll get this type of information in Swift programming language. fileprivate Apply this modifier to a declaration to indicate the declaration can be accessed only by code in the same source file as the declaration. private Apply this modifier to a declaration to indicate the declaration can be accessed only by code within the declaration's immediate enclosing scope. For a more comprehensive explanation with examples: https://www.avanderlee.com/swift/fileprivate-private-differences-explained/ I personally prefer using private.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’24
Reply to Are tinted app icons required in iOS 18?
Then the system will perform its own tinting if user asks for it, which may lead to a result you don't like. But it is not required to provide a tinted version of app icon: iOS and iPadOS support three stylistic variations for app icons: Light, Dark, and Tinted. You can create your own variations to ensure that each one looks exactly the way you way you want. If you prefer, you can take advantage of the system’s automatically generated treatment that is applied to all app icons. It is crafted intelligently to preserve design intent and maintain legibility. This also helps maintain a consistent visual experience across the Home Screen. https://developer.apple.com/documentation/xcode/configuring-your-app-icon
Topic: Design SubTopic: General Tags:
Jul ’24
Reply to Bad user experience because of NFC timeouts
You should file a bug report, as I suspect it is not possible to modify those timeouts which are set for maximum security. have you a way to notify user that he/she should present the card promptly ? Or could the trick described here for Apple Pay work in your case ? https://stackoverflow.com/questions/58463408/how-can-i-increase-the-failure-timeout-of-an-apple-pay-operation
Topic: App & System Services SubTopic: General Tags:
Jul ’24
Reply to ContentView
Welcome to the forum. only thing I see when I launch the Simulator and I open my app the only thing I see is a white page. So this is not the Preview, but the app on simulator. Please give more precise information: source code screenshot of what you get (Preview or Simulator ?)
Jul ’24
Reply to How can we delete posts?
Unfortunately, we can't, even when there's no answer yet to it, unless moderator does it. Only option, as you posted less than 1 hour ago is to edit it, change the title (Post deleted for instance) and leave quasi empty content (that's probably what you did already)… Not really cool, but that's it.
Jul ’24
Reply to 5.5" Display Images wont submit
I use iPhone 8 Plus simulator and it works fine. So, tit should work with 7+ or 6s+ which have exactly the same screen characteristics. Sorry for the question: do use generate simulator screen shots with cmd-S ?
Replies
Boosts
Views
Activity
Jul ’24
Reply to Critical Picture Distortion Issue: iPhone 14 Pro Max Camera Concern
That's a question about product, not about app development. So this is not the right forum. You'd better go to community support: https://discussions.apple.com/welcome
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Could anyone help me and why is happening?
Have you enabled developer's mode ? See details here on what you need to do enable betas. https://developer.apple.com/support/install-beta/ step by step here: https://9to5mac.com/2023/03/28/turn-on-ios-beta-from-settings/ In case. I see your battery level is low. Retry when battery is over 50%.
Replies
Boosts
Views
Activity
Jul ’24
Reply to How Can I create a new App from API
It seems the error is explicit: "The resource 'apps' does not allow 'CREATE'. Allowed operations are: GET_COLLECTION, GET_INSTANCE, UPDATE" AFAIU, it is not possible to create an app in this way.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Ios 18.0
Bem-vindo ao fórum Mais informações aqui: https://support.apple.com/en-au/108763 De futuro, é melhor evitar instalar versões beta, a menos que seja um utilizador experiente. Get details here: https://support.apple.com/en-au/108763 In the future, you should probably avoid installing betas unless you are an experienced user.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Can I block certain iPhone types from using my app?
@Mous772 An option is to embed the overall view into a scrollView, sized on the device size. It will have no effector large screens, but would let user scroll on smaller ones. That's not perfect, but that would avoid a complete redesign.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Failed to produce diagnostic for expression; please submit a bug report
Welcome to the forum. But, if you want anyone to help, please provide a comprehensive code to test. Where is Movie defined ? where is SmallVerticalButton defined ? same for CustomTabSwitcher What is the mainView (ContentView) ? Where exactly do you get the error ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to iOS 18 and iPhone 12 battery
Your question is about product performance. Sio that's not a question for the developers forum. You'd better ask on Apple Support Community https://discussions.apple.com/welcome or file a bug report.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Casino app appears on appstore
Gambling apps are not forbidden nor censored but strictly controlled. See guidelines 5.1.1: (ix) Apps that provide services in highly regulated fields (such as banking and financial services, healthcare, gambling, legal cannabis use, and air travel) or that require sensitive user information should be submitted by a legal entity that provides the services, and not by an individual developer. Do you know if those apps follow those rules ? If you know they don't (but how could you ?), you could file a bug report.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Difference between private and fileprivate?
You'll get this type of information in Swift programming language. fileprivate Apply this modifier to a declaration to indicate the declaration can be accessed only by code in the same source file as the declaration. private Apply this modifier to a declaration to indicate the declaration can be accessed only by code within the declaration's immediate enclosing scope. For a more comprehensive explanation with examples: https://www.avanderlee.com/swift/fileprivate-private-differences-explained/ I personally prefer using private.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Are tinted app icons required in iOS 18?
Then the system will perform its own tinting if user asks for it, which may lead to a result you don't like. But it is not required to provide a tinted version of app icon: iOS and iPadOS support three stylistic variations for app icons: Light, Dark, and Tinted. You can create your own variations to ensure that each one looks exactly the way you way you want. If you prefer, you can take advantage of the system’s automatically generated treatment that is applied to all app icons. It is crafted intelligently to preserve design intent and maintain legibility. This also helps maintain a consistent visual experience across the Home Screen. https://developer.apple.com/documentation/xcode/configuring-your-app-icon
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Question about preview using code in SwiftUI
If I'm right the correct syntax is struct ContentView_Previews: PreviewProvider and not struct ContentView_Preview:PreviewProvider Note the "s"
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’24
Reply to Bad user experience because of NFC timeouts
You should file a bug report, as I suspect it is not possible to modify those timeouts which are set for maximum security. have you a way to notify user that he/she should present the card promptly ? Or could the trick described here for Apple Pay work in your case ? https://stackoverflow.com/questions/58463408/how-can-i-increase-the-failure-timeout-of-an-apple-pay-operation
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to ContentView
Welcome to the forum. only thing I see when I launch the Simulator and I open my app the only thing I see is a white page. So this is not the Preview, but the app on simulator. Please give more precise information: source code screenshot of what you get (Preview or Simulator ?)
Replies
Boosts
Views
Activity
Jul ’24
Reply to How can we delete posts?
Unfortunately, we can't, even when there's no answer yet to it, unless moderator does it. Only option, as you posted less than 1 hour ago is to edit it, change the title (Post deleted for instance) and leave quasi empty content (that's probably what you did already)… Not really cool, but that's it.
Replies
Boosts
Views
Activity
Jul ’24