App is experiencing following crash and unable to understand the cause behind of this crash. This crash report I got it from App Store. This is the crash report screenshot
It is mostly affecting on iOS 10.2. In this class I'm using Google Maps, Pageviewcontroller and Timer. So, anyone can tell me how to figure out it?
![-[viewcontroller .cxx_destruct] symbolicated crash report](https://i.stack.imgur.com/tDdEv.png)
This crash is happening due to fetching user current location from Google Maps by using addObserver
forKeyPath:@"myLocation" options:NSKeyValueObservingOptionNew.While dealloc Google Maps, that time you need to remove this Observer. Otherwise app will crash with following error
you need to addObserver before adding Google Maps to mapView like following:
then add this code also for removing the observer
for more details: Google Maps iOS SDK, Getting Current Location of user