myが現在表示されているクラスでAppDelegate
あるかどうかを自分のクラスから確認しています。ParentEndViewController
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle: nil];
ParentEndViewController *parent = [storyboard instantiateViewControllerWithIdentifier:@"ParentEndViewController"];
if (parent.isViewLoaded && parent.view.window){
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:displayName
message:body
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alertView show];
NSLog(@"current view is parent!");
}
else{
NSLog(@"current view is not parent!");
}
それは「それを印刷していますcurrent view is not parent!
。しかし、私のアプリで実行されている現在のビューは確実です。ParentEndViewController
current view is parent!
問題はどこだ?