Trying to transit to a new UIView once "Login" button is clicked in AlertView

107 Views Asked by At

I have searched for methods that allows me to transit to a new page once a button on alert view is clicked. Do I have to use the prepareForSegue method? Or is there any simpler method?

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

    if(buttonIndex ==0){
        //code goes here
    }

    if(buttonIndex ==1){
        NSString *username = [[alertView textFieldAtIndex:0] text];
        NSString *password = [[alertView textFieldAtIndex:1] text];
        NSLog(@"Username:%@",username);
        NSLog(@"Password:%@",password);

        //Check if username and password tally if tally move on to Menu page
        MainPageViewController *anotherController = [[MainPageViewController alloc] initWithNibName:@"AnotherView" bundle:nil];

        [self.navigationController pushViewController:anotherController animated:YES];
    }
}
1

There are 1 best solutions below

1
On

you have to use alertview delegate method – alertView:clickedButtonAtIndex: to know which button was clicked and you can perform subsequent operation on the same.