Posts

Post marked as solved
1 Replies
I found the reset button. Select a container from the Home list and without opening the container select the gear icon by the Development Label. I kept opening the container to look for the reset button. 😊
Post marked as solved
4 Replies
I think the problem was that I created the stack view while Vary for Traits was active (for iPhone8) then drug the button into the stack view and then tried to run the app on an iPad. The view showed the stack view but the buttons in it were not active. When I moved the button out of the stack it became active, and the labels that were set by the buttons action (still in the stack view) did show the correct results.Here is the button's action@IBAction func startWhenInUse(_ sender: Any) { print (CLAuthorizationStatus.self) locationManager.requestWhenInUseAuthorization() print (CLAuthorizationStatus.self) locationManager.startUpdatingLocation()}
Post marked as solved
4 Replies
The button is connected and works if moved outside of the stack view. This may be somehow related to my use of Vary by Traits as I have to get these views to work on multiple devices. In the meantime I am going to keep the action buttons out of Stacks.Thanks for taking a look at this.