ストーリーボードを使用していて、エントリ ポイントが viewController1 の場合。
App Delegate に条件を実行させてから、ストーリーボードのエントリ ポイント (viewController1 または viewController2) を選択する方法はありますか?
位置情報サービスをオンにするかどうかを App Delegate から選択してから、次のようなことを行いたいと考えています。
(![CLLocationManager locationServicesEnabled])
{
self.viewController = [[viewController1 alloc] init];
NSLog(@"vc is viewController2 from app del. loc svcs off");
}
else if ([CLLocationManager locationServicesEnabled])
{
// alert location services denied
self.viewController = [[viewController2 alloc] init];
NSLog(@"vc is viewController2 from app del. loc svcs on");
NSLog(@"core location is on");
}