Hi all!
I've found a strange problem with my app... I've just hidden the status bar to get full screen operative via the following line:
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
Called on the - (void)applicationDidFinishLaunching

UIApplication *)application function and it worked well. But when I try to touch an item that goes from (Y = 476) from (Y = 444) I've found that the touch is only processed if the touched Y is greater than 468, so 22 pixels are lost there (untouchable zone!). Anyone knows why is this happening? It's something I've made wrong or it's simply an untouchable zone for every iPhone?
Thanks!