每当cllocationmanager更新位置时执行的函数

时间:2015-06-05 00:24:33

标签: ios swift cllocationmanager

我的CllocationManagerDelegate中有一个函数,我需要在CllocationManager尽快更新位置后执行,但绝对不是之前。 CllocationManager更新位置后,有没有办法让代码块执行?

1 个答案:

答案 0 :(得分:1)

我会在协议方法didUpdateLocations中调用您的方法。

像这样:

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) {
    let cell = sender as! UITableViewCell
    let indexPath = self.tableView.indexPathForCell(cell)
    let section = indexPath.section
    // other code here
}

希望这有帮助!