iPhone中图像视图的可用区域有多少像素?
答案 0 :(得分:9)
如果需要,您可以使用以下内容访问完整的480x320屏幕:
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
self.navigationController.view.bounds = CGRectMake(0,0,320,480);
self.navigationController.navigationBar.hidden = YES;
您还可以在此帖中找到有用的此信息found:
Status bar:20像素 Nav bar:44像素 Tab bar:49像素 Toolbar:44像素
希望它有所帮助。
答案 1 :(得分:1)
这是Pablo提到的特定元素维度的visual representation。
答案 2 :(得分:0)
Google是你的朋友: http://www.google.com/search?hl=en&q=iphone+screen+resolution&btnG=Google+Search&aq=0&oq=iphone+screen+res
(简答:480 x 320)