Domanda

  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.

È stato utile?

Soluzione

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];
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top