I would like to know if there is a simple way to access the main window or view in IOS. Something similar to:
[UIScreen mainScreen]
Thank you.<
Simply clever, works from any class:
[(YourAppDelegate *)[[UIApplication sharedApplication] delegate] window];
Note: don't forget to import your appDelegate class