Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have three view controller with three different XIB, let's say ViewControllerA, ViewControllerB and ViewControllerC and every view controller has UIView variable named view in it's property. so it would be something like this :

@property (readwrite, retain) UIView *view;

first, scene ViewControllerA loaded, then after i touched a button scene of ViewControllerB appears. but i deliberately not removing UIView of ViewControllerA from super view. Then after i touched a button the scene navigate to ViewControllerC. here, before navigate to ViewControllerC i want remove UIView both of ViewControllerA and ViewControllerB from super view

removing UIView of ViewControllerB is not a problem, i can do something like this in ViewControllerB method :

[self.view removeFromSuperview];

but how can i remove UIView of ViewControllerA?

thanks

share|improve this question
ae you adding both viewcontroller's view as subviews ? – Midhun MP Nov 13 '12 at 9:09
Can you please explain what you are trying to do? – MicRO Nov 13 '12 at 9:10
@MidhunMP each view controller has UIView respectively and not related with another view controllers – user1606616 Nov 13 '12 at 9:14
@user1606616: then what are you trying to remove ? – Midhun MP Nov 13 '12 at 9:16
@MidhunMP and Deepak i want remove UIView of ViewControllerA when i accessing ViewControllerC, but to access ViewControllerC, i must access ViewControllerB. and in ViewControllerB i still want UIView from ViewControllerA as a "dummy view". sorry if it's confusing – user1606616 Nov 13 '12 at 9:16
show 8 more comments

2 Answers

If you want totally independent of each other view controllers, you could switch them in appDelegate.window.rootViewController. Only create variable appDelegate that points to UIApplication.
And handle the animations by yourself.

Example:

AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
UIViewController *controller1 = [ViewControllerA alloc] initWithNibName:@"ViewControllerA" bundle:nil];
UIViewController *controller2 = [ViewControllerB alloc] initWithNibName:@"ViewControllerB" bundle:nil];

appDelegate.window.rootViewController = controller1;
appDelegate.window.rootViewController = controller2;
share|improve this answer
uhh, actually i just want remove UIView of ViewControllerA when i access ViewControllerC. or by create UIViewController universal through AppDelegate i can directly access every UIViewController that initialized in AppDelegate? – user1606616 Nov 13 '12 at 9:18
You can access all public properties of all public instances within appDelegate. E.g. "appDelegate.controller1.view" will return you the main view of controller1. Also [appDelegate.controller1.newCreatedButton removeFromSuperView] will remove the button. – pbibergal Nov 13 '12 at 9:20
hmm, sounds long way that i need rebuild my current app. i need to remove UIView of ViewControllerA. but i'll give a hit, it's sound reasonable to make it public instances so i can access globally – user1606616 Nov 13 '12 at 9:34

Actually you are using a Navigation Controller to navigate through the three views. there is no option like [self.view removeFromSuperview]; It is possible only if you had added the view as "Subview",

In navigationCOntroller, You can use only push and pop.

share|improve this answer
edited, every ViewController actually have respective UIView named "view" where i put some subviews in "view" variable – user1606616 Nov 13 '12 at 9:20
does that make sense? – MicRO Nov 13 '12 at 9:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.