Quote:
Originally Posted by Shmoopi
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.
|
Thanks for your reply Shmoopi, actually I've solved the problem after refered to your comment. Now I am back to raise another question

Remove subview from another is no more a problem, but what about show up a subview? my question is, since the subview (ex: the index 50th) has been removed fromsuperview, does it mean I need to alloc again in order to show the 50th subview up??