How switch UIViewController by flip from 3 controllers ?
- by Sergey
Hello, all.
I've got next problem: i've got 3 UIViewController and need to switch controllers by UIModalTransitionStyleFlipHorizontal.
Next code working fine:
testController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:testController animated:YES];
where testController - next controller to…