BIZPopupView icon indicating copy to clipboard operation
BIZPopupView copied to clipboard

How to Dismiss and Present another view?

Open bintu1234 opened this issue 8 years ago • 1 comments

HI Thanks for the PopUp.Every think working fine .But now I am facing one issue. 1)I am presenting this popup. 2)I have 2 componants textField and Button. Now when i click on Button I need to dismiss This popup and present another.But i am not able o do this . below is my code [self dismissPopupViewControllerAnimated:YES completion:^{ [self presentViewController:vc animated:YES completion:nil]; }];

bintu1234 avatar Jun 18 '16 12:06 bintu1234

simply add this on your button action. [self dismissViewControllerAnimated:NO completion:nil];

sudhakar-codes avatar Aug 05 '17 10:08 sudhakar-codes