Post

Replies

Boosts

Views

Activity

Reply to Resubmitting for Apple review
Welcome to the forum.   getting past the demo login on my app. when I press enter demo or sign in Is it SwiftUI or UIKit app ? If UIKit, have you checked the buttons are properly connected to their IBAction ? If UIKit, please show the code of the buttons if SwiftUI please show the code of the view where they are defined.   I can’t enter my app to see what’s wrong with it. What do you mean ? That you cannot test beyond this demo or sign in ? You give almost no information except declaring "it does not work". How could someone help ? Please read this: https://developer.apple.com/forums/thread/706527 and complete your post accordingly.
Oct ’25
Reply to Primeira publicação de app na loja apple
Para as capturas de ecrã, o melhor é gerá-las com o simulador. Assim, tem a certeza de que está no formato correto. Então, tem uma empresa e um número DUNS? Qual é o nome comercial? É o nome comercial da empresa? Onde aparece nos metadados? Provavelmente seria mais simples ter o mesmo nome para ambos. For the screenshots, the best is to generate them with the simulator. You are thus sure it is the correct format. So you have a company and a DUNS number ? What is the trade name ? Is it the commercial name of the company ? Where does it appear in Metadata ? It would probably be simpler to have the same name for both.
Oct ’25
Reply to The app contains one or more corrupted binaries. Rebuild the app and resubmit.
On which version of Xcode do you build ? Have you the list of all libraries you use ? Finally, have you accepted the eventual Xcode message (appear in left panel) to update to new settings ? Old thread, but you may find interesting hints to look at: https://stackoverflow.com/questions/48501857/non-public-api-usage-the-app-contains-one-or-more-corrupted-binaries
Oct ’25
Reply to How Should a Beginner Properly Start iOS Development? Seeking Advice from Experienced Developers
You're not the first to ask such question. Answer here may help you: https://developer.apple.com/forums/thread/797977?answerId=855247022#855247022 With all the things you want to learn, that may take you more than 6 months full time to learn and master. So you should focus first on learning basics, like using Xcode (of course), Swift language and the basics of SwiftUI and UIKit. Good material in https://developer.apple.com/pathways/.
Oct ’25
Reply to Calendar's date func is not behaving as I'd expect...
As explained in doc, Changing a component’s value often will require higher or coupled components to change as well… The exact behavior of this method is implementation-defined: Changing a component’s value often will require higher or coupled components to change as well. For example, setting the Weekday to Thursday usually will require the Day component to change its value, and possibly the Month and Year as well. If no such time exists, the next available time is returned (which could, for example, be in a different day, week, month, … than the nominal target date). Setting a component to something which would be inconsistent forces other components to change; for example, setting the Weekday to Thursday probably shifts the Day and possibly Month and Year. The exact behavior of this method is implementation-defined. For example, if changing the weekday to Thursday, does that move forward to the next, backward to the previous, or to the nearest Thursday? The algorithm will try to produce a result which is in the next-larger component to the one given (there’s a table of this mapping at the top of this document). So for the “set to Thursday” example, find the Thursday in the Week in which the given date resides (which could be a forwards or backwards move, and not necessarily the nearest Thursday). For more control over the exact behavior, use nextDate(after:matching:matchingPolicy:behavior:direction:). Note that if you set the weekday to the same value (3), results are kept the same meDate = Calendar.current.date(bySetting: .weekday, value: 3, of: meDate)! Interesting discussion here: https://forums.swift.org/t/date-from-date-components-is-incorrect-after-changing-month/54192/5
Topic: App & System Services SubTopic: General Tags:
Oct ’25
Reply to Suddenly being asked for export compliance, even with ITSAppUsesNonExemptEncryption set to NO
could any of the following override this setting? My understanding is: Using certain third-party SDKs that might have their own encryption. -> YES The presence of specific Apple frameworks like CryptoKit or CommonCrypto, even if not used for non-exempt purposes. -> YES Standard HTTPS calls made through WKWebView. -> NO A temporary bug or caching issue in App Store Connect. -> Always possible, but unlikely.
Oct ’25
Reply to Suddenly being asked for export compliance, even with ITSAppUsesNonExemptEncryption set to NO
Welcome to the forum. It likely just means they want to have your explicit commitment (not only automatic from meta data) that the app does not use encryption. I guess that if you set ITSAppUsesNonExemptEncryption to YES and declare you don't use, there would be an alert or a rejection. I've not identified any issue with it otherwise.
Oct ’25
Reply to [iOS 26] Can no longer detect whether iPhone has notch
On which device without notch (or simulator) do you test for iOS 26 ? Here is how I detect the notch (I test the top): extension UIDevice { var hasNotch: Bool { let scenes = UIApplication.shared.connectedScenes let windowScene = scenes.first as? UIWindowScene guard let window = windowScene?.windows.first else { return false } return window.safeAreaInsets.top > 20 } }
Topic: UI Frameworks SubTopic: General Tags:
Oct ’25