In the AppDelegate I have the next extension:
extension AppDelegate: CLLocationManagerDelegate {
func locationManager(manager: CLLocationManager!,didRangeBeacons beacons: [AnyObject]!, inRegion region: CLBeaconRegion!) {
let viewController:ViewController = window!.rootViewController as! ViewController
viewController.beacons = beacons as! [CLBeacon]?
NSLog("didRangeBeacons");
}
}
And in the ViewController I do:
class ViewController: UIViewController {
var beacons: [CLBeacon]?
override func viewDidLoad() {
super.viewDidLoad()
if(beacons != nil){
println(beacons![0])
}
}
}
And it doesn't print me anything. But it's not empty, an array. It prints in the logs didRangeBeacons
. So, what is the problem and how can I access to it?
CLLocationManagerDelegate
's methodlocationManager(manager:,didRangeBeacons beacons:, inRegion:)
is an asynchronous call. Here you are trying to get the value ofbeacons
in yourViewController
on theviewDidLoad
method.It's possible that the method on the AppDelegate fires after the view controller's viewDidLoad does.
Check that
viewDidLoad
is not being called beforelocationManager(manager:,didRangeBeacons beacons:, inRegion:)