Post not yet marked as solved
When I attempt to run on the simulator iPhone SE (14.5), I get the message over 1200 times while the app is starting. The target platform in Xcode is iOS 14.5. During startup, I am performing a metaDataQuery to load data from iCloud. Has anyone else seen this?
Post not yet marked as solved
I would like to change the title in the current view which it is being displayed. It is originally set in viewDidLoad, but i would like to change it after that. I have tried changing the title in viewWillAppear using the following;
``
title = "name8"
navigationItem.title = "name7"
self.title = "name1"
navigationController?.navigationItem.title = "name2"
self.navigationController?.navigationBar.topItem?.title = "name3"
navcontroller.title = "name4"
navcontroller.navigationBar.topItem?.title = "name5"
detailVC.navigationItem.title = "name6" // UINavigationItem: 0x101984210
but none of these has changed the original title. Am I missing something?`
Post not yet marked as solved
Testing swiftUI master/detail on simualator (11.2.1). When rotating detail view from portrait to landscape, everything OK.When rotating from landscape to portrait, onDisappear is called following a console message: 2019-11-18 14:17:27.902794-0700 combineTS[41908:4781824] Unbalanced calls to begin/end appearance transitions for <_TtGC7SwiftUI19UIHostingControllerVVS_22_VariadicView_Children7Element_: 0x7faa29410200>.Does anyone know why this is happening and how it can be prevented? I am trying to detect when the back button has been pressed and the detail view is being destroyed so I can cleanup database been used in detailView.
Post not yet marked as solved
When I spea\k a number the recoginzer returns the actual number if it is greater that 10. If the number if less than 10, it returns the number spelt out. For example,speak "twenty", get "20"speak "six", get "six", not "6"Is there a reason for this? Is it a feature that I can turn off? I really don't want to have to parse the text of some speech to look for spoken numbers below 10!
Post not yet marked as solved
Scenario:start app before signing in to iCloudGo to settings. This puts app in background. sign in to iCloud.When app enters foreground CKAccountChanged is signalled , call metaDataquery to list filesWhen MetaDataQuery executed, it only returns some of the files.If I stop the app and restart it, then metaDataQuery returns all of the files.Question: Why is this happening? Is there a timing problem if I execute metaDataQuery from CKAccountChanged notification code?