Quote:
Originally Posted by Georg
hi Shmoopi, I have just realized what did you mean to set index to 100, ok, if I click on the BlueView, then the content of TabView will show up, now my question is, if there are 2,3 subviews waiting to be displayed right after BlueView, how can I make the TabView shown up after the 3rd subview is removed? I've tried to use [self.view removeFromSuperview], but it just show up a white view, the buttons, labels on the TabView is not displayed.
hope you know what I am saying..
|
I'm actually very confused as to what you're asking

I think that you're trying to have 3 subviews show up in order before the mainview shows up. If so, set the one you want to show up first atIndex:100, second atIndex:50, and third atIndex:25. When you want to remove them, just use [self.view removeFromSuperview] in the firstview, secondview, and thirdview .m files. Hope that helps.