I need to add a view to window on iPhone, so i tried to do this: [[UIApplication sharedApplication] windows], but it seams that the array contains only one window.

Can anyone tell me what i'm not doing write/what i need to do?

link|improve this question

feedback

4 Answers

try

[[UIApplication sharedApplication] keyWindow];

if you want to find your app's window.

link|improve this answer
It does not work. I tried. – mxg Dec 10 '09 at 8:53
If [[UIApplication sharedApplication] windows] retuns nothing, then [[UIApplication sharedApplication] keyWindow] will throw an exception – mxg Dec 10 '09 at 8:54
hmmm.... it is very strange. where in your app do you call this method? – Morion Dec 10 '09 at 9:05
@Morion, in a UITableViewController, after MPMoviePlayerController has started playing. Apple's example works well. – mxg Dec 10 '09 at 11:04
feedback

Your AppDelegate class will hold the window (as a property). You only get one window per application. In most cases you should only add views directly to the window from the AppDelegate -- for normal subview management, use viewControllers.

link|improve this answer
MPMoviePlayerController seams to start into a different window, but I need it to add an overlay on the MoviePlayer window. – mxg Dec 10 '09 at 11:23
Ah, I see. I found this post about it, which claims to be able to do it on 3.0: amromousa.com/2009/03/22/… but, the usual warning -- Apple might get mad. – Ian Henry Dec 10 '09 at 14:16
feedback
up vote 1 down vote accepted

Well, I found the problem. Actually conditions where not set correct, [[UIApplication sharedApplication] windows] returned only one window. Still, [[UIApplication sharedApplication] keyWindow] throw an exception.

It was because When MPVideoPlayerController starts playing, it starts creating a new window, but, probably does not finish this job immediately. It is created ALMOST immediately, but not immediately.

link|improve this answer
feedback

You could do something like this.

UIView *controllersView = [myViewController view];

[window addSubview:controllersView];
link|improve this answer
It is on the video window. So i don't have access to view. – mxg Dec 10 '09 at 8:53
And where did that variable "window" come from? – nash Dec 10 '09 at 13:01
feedback

Your Answer

 
or
required, but never shown

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