Using this code in loadView of a UIViewController:
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:NO];
CGRect screen = [[UIScreen mainScreen] bounds];
UIView* mainView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, screen.size.width, screen.size.height)];
mainView.backgroundColor = [UIColor whiteColor];
self.view = mainView;
mainView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth |
UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleLeftMargin;
[mainView release];
All touches are picked up when sliding from off the screen into it in any direction and orientation. Notice that the size of the view always occupies the entire screen.
I believe the others are correct in saying that the status bar will get the touch events if it is visible. Also, if the view doesn't span the entire screen it may not get events. For example, if the frame's y-coordinate is 20, it will not pick up the touch when sliding your finger from the top.