シングルトン オブジェクトのメソッドを呼び出すがUIViewController
あり、特定の条件でUIAlertView
. ユーザーがボタンをタップするUIAlertView
と、UIAlertView
が消え (現時点では消えます)、そのUIViewController
後ろのボタンが別のシーンに移動します。私の問題は、UIAlertView
がシングルトン クラスからのものであり、セグエを で実行する必要があることUIViewController
です。
でSingleton.m
:
-(void)alertView:(UIAlertView *)alertView
clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString *buttonTitle = [alertView buttonTitleAtIndex:buttonIndex];
if ([buttonTitle isEqualToString:@"Button!"]) {
[self performSegueWithIdentifier: @"Segue!" sender: self];
}
}
私の質問は、セグエを行う時がself
来たことを通知できるようにするには、何を置き換えるかです。UIViewController