Pergunta

  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.

Foi útil?

Solução

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];
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top