我的CllocationManagerDelegate
中有一个函数,我需要在CllocationManager
尽快更新位置后执行,但绝对不是之前。 CllocationManager
更新位置后,有没有办法让代码块执行?
答案 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
}
希望这有帮助!