I\'ve been trying to create a full screen view. I plan on using core graphics for rendering. I am new to iPhone development so please forgive this basic question.
Here\'
There are two methods;
In the info.plist for your application add a boolean key UIStatusBarHidden and set it to true.
boolean
UIStatusBarHidden
At runtime you can call setStatusBarHidden on your application to show/hide the status bar. E.g.
setStatusBarHidden
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]