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?
|
I need to add a view to window on iPhone, so i tried to do this: Can anyone tell me what i'm not doing write/what i need to do?
| ||||
|
feedback
|
|
try
if you want to find your app's window. | |||||||||
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. | |||||
feedback
|
|
Well, I found the problem. Actually conditions where not set correct, It was because When | |||
|
feedback
|
|
You could do something like this.
| |||||
|
feedback
|