Amir
Amir

Reputation: 455

load second view from the first view

I am currently develop iphone app. the type of the app is Tab Bar. so i heave 4 tabs that in each tab i have different view. (each view have controller for itself)

now in the first view i am loading data from the net and when it finished i want automaticly to jump to the second tab controller(to show the result).

but u cant find the way to load the second view from the first view?????????

thanks.

Upvotes: 0

Views: 146

Answers (1)

Ole Begemann
Ole Begemann

Reputation: 135540

self.tabBarController.selectedIndex = 1;

Upvotes: 2

Related Questions