I have a UIViewController that calls a method on a singleton object in which, given a certain condition, displays a UIAlertView. When the user taps the button in the UIAlertView I want the UIAlertView to disappear (which at the moment it does) and then the UIViewController behind it to segue to another scene. My problem is that the UIAlertView is from the singleton class, while the segue needs to be performed on the UIViewController.
In Singleton.m:
-(void)alertView:(UIAlertView *)alertView
clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString *buttonTitle = [alertView buttonTitleAtIndex:buttonIndex];
if ([buttonTitle isEqualToString:@"Button!"]) {
[self performSegueWithIdentifier: @"Segue!" sender: self];
}
}
My question is what do i replace self with that will allow me to notify the UIViewController that it's time to do a segue?