You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got a PermissionButton in my app, and although I know it is specified that the app will crash when changing permissions, it doesn't seem to crash when changing the location services permission (whenInUse) in my tests – neither in the Simulator, nor on the Device (both on debug and release builds) using iOS 10.2.1.
So, I need to be able to trigger an update of the PermissionButtons state manually in my app like so:
func applicationWillEnterForeground(_ application:UIApplication){
// some code to get the permission button
permissionButton.update() // calls the render() method internally
}
The text was updated successfully, but these errors were encountered:
I've got a PermissionButton in my app, and although I know it is specified that the app will crash when changing permissions, it doesn't seem to crash when changing the
location services
permission (whenInUse) in my tests – neither in the Simulator, nor on the Device (both on debug and release builds) using iOS 10.2.1.So, I need to be able to trigger an update of the PermissionButtons state manually in my app like so:
The text was updated successfully, but these errors were encountered: