0

我已经搜索了允许我在单击警报视图上的按钮后转移到新页面的方法。我必须使用 prepareForSegue 方法吗?或者有没有更简单的方法?

-(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];
    }
}
4

1 回答 1

0

您必须使用 alertview 委托方法 -alertView:clickedButtonAtIndex:知道单击了哪个按钮,您可以对其执行后续操作。

于 2012-05-20T06:47:53.340 回答