Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Complex multiview iphone ios

i need to implement a multiview app really complex to me and i need some advice. The multiview app is something like:

First view: Normal UIViewController with one button, when i push it go to second view Second view(aka mainview): a Windows with Tab Bar with 2 tabbar item who switch between: Second view A: Normal UIViewController with some elements Second view B: UITableViewController

Can someone give me an advice where to start reading or some examples?

thx

like image 349
Alessio Lunardelli Avatar asked Sep 15 '25 22:09

Alessio Lunardelli


1 Answers

my advice is to read sample code form apple there you can also find coding how to s so good luck, or you can find example codes all over the stack just search. for example navigation based app: UINavigationController doesn't work in a the moreNavigationController of a UITabBarController

or simple transition:

SecondViewController *screen = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
        screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;


        [self presentModalViewController:screen animated:YES];

        [screen release];

hope it helps bye

wblade

like image 181
Csabi Avatar answered Sep 17 '25 13:09

Csabi