CLLocationManager委托甚至在弹出的视图控制器之后仍然被调用

时间:2015-10-26 08:54:49

标签: ios swift swift2 core-location cllocationmanager

我有一个viewcontroller,我将在很多场合推送和弹出,我注意到即使在弹出viewcontroller之后CLLocationManager实例仍然存在。

我该如何解决这个问题?

我正在使用swift但是我发现即使在弹出ViewController之后对象仍然存在。

是吗?

1 个答案:

答案 0 :(得分:0)

当您点击后退按钮时,请在以下功能中将CLLocationManager委托值设置为'nil'。

override func viewWillDisappear(animated: Bool) {
    //Set Delegate to nil here...
}