Post

Replies

Boosts

Views

Activity

Reply to Stuck on checking for app store connect access
I found old SO threads, but you should adapt to better understand where the problem is: https://stackoverflow.com/questions/22443425/application-loader-stuck-at-authenticating-with-the-itunes-store-when-uploadin and https://stackoverflow.com/questions/50507628/unable-to-upload-the-ipa-file-to-itunes-store You should check your account (here is the sequence): I checked my Appstore Connect account (contracts). I noticed a yellow warning that some contact information were missing. I updated.
Apr ’21
Reply to Extra UITabBarButton added to UITabBar
Which version of Xcode ? That was supposed to be solved in 11.2: "Fixed an issue with UITabBarController where decoding an instance from a storyboard would create extra views at the left end of the screen. If you worked around this issue on Xcode 11.0 or 11.1 by creating a subclass of UITabBarController and hiding extra views in the initializer you can remove the workaround. (55310448)"
Topic: UI Frameworks SubTopic: UIKit Tags:
Apr ’21
Reply to App iPhone launch error.
Do you try to launch in simulator or on device ? First try on simulator. Then, in Xcode, select your app name at the top of the list in the left panel (the file browser panel). select TARGETS select Signing and Capabilities Do you notice any error indicated there ? What do you get here, precisely ? Why have you co.hashyap… and not com.hashyap… Also try to do an option-clean-build-Folder in Xcode (Product menu).
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’21
Reply to Save When Program Exits
Do it here (and test with the print): func applicationWillTerminate(_ application: UIApplication) { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. print("End") // Save here }
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’21