1. Is it possible to flip the tab bar view to another view? If no, please answer me with 'No'.

  2. If it is possible, could you give me the basic idea how to do it? I tried some ways but it did not work, and I am a beginner.

有帮助吗?

解决方案

Do you mean that you have a tab bar and you want to flip the entire screen to another view? You can do this with modal view controllers. For example (from a view controller in the tab bar controller):

UIViewController *vc = [[UIViewController alloc] initWithNibName:nil bundle:nil];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:vc animated:YES];
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top