ビーコンをリッスンするアプリを開発しています。アプリがバックグラウンドにあり、ビーコンの近くにいるときにアプリを開きたいです。どうすればそれができますか?次の 2 つの方法のいずれかで、開く瞬間を設定できます。
-(void)locationManager:(CLLocationManager *)manager
didRangeBeacons:(NSArray *)beacons inRegion:(CLBeaconRegion *)region {
//..........
}
-(void)locationManager:(CLLocationManager *)manager
didEnterRegion:(CLRegion *)region {
//.........
}