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 an object that is a subclass of UIView that can be added to a view hierarchy as a subView. I want to be able to remove the UIView from its superView and add it as a subView of the main window and then expand to full screen.

Something along the lines of:

// Remove from superView and add to mainWindow
[self retain];
[self removeFromSuperView];
[mainWindow addSubView:self];

// Animate to full screen
[UIView beginAnimations:@"expandToFullScreen" context:nil];
[UIView setAnimationDuration:1.0];
self.frame = [[UIScreen mainScreen] applicationFrame];
[UIView commitAnimations];

[self release];

Firstly am I on the right lines? Secondly, is there an easily way for the object to get a pointer to the mainWindow?

Thanks

Dave

share|improve this question
to answer your second question: UIWindow* mainWindow = [[UIApplication sharedApplication] keyWindow]; – phix23 Jan 12 '11 at 20:11

2 Answers

up vote 3 down vote accepted

You could use window property of the view

self.window
share|improve this answer
Cheers Andriy, missed that one completely. It also makes the removing from superView very easy as the view can only have one super view. So simply [self.window addSubView:self] seems to do the trick without the need for the retain and removeFromSuperView. Regards Dave. – Magic Bullet Dave Jan 24 '11 at 14:16

Looks good. But you might want to convert the view's frame from its superview coordinate system to the window's coordinate system, before beginning the animation. Otherwise the animation will not be smooth.

share|improve this answer
Hi Kris, is there a way of getting the co-ordinates of a view within a view hierarchy relative to the main window rather than its superView? The frame property is relative to the parent view, does that mean I'd have to traverse up the tree and calculate the co-orninates manually? – Magic Bullet Dave Jan 25 '11 at 15:28
2  
UIView has a convenience method for that conversion: [UIView convertRect:toView:] (the main window is also a view) developer.apple.com/library/ios/ipad/#documentation/uikit/…. – Kris Van Bael Jan 25 '11 at 21:03
Perfect, thanks Kris, very helpful. Have voted up your comments. Dave – Magic Bullet Dave Jan 26 '11 at 13:42

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.