博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone UI的大小(转)
阅读量:4947 次
发布时间:2019-06-11

本文共 1693 字,大约阅读时间需要 5 分钟。

Element Size (in points)
Window (including status bar) 320 x 480 pts
Status Bar
()
20 pts
View inside window 
(visible status bar)
320 x 460
Navigation Bar 44 pts
Nav Bar Image /
Toolbar Image
up to 20 x 20 pts (transparent PNG)
Tab Bar 49 pts
Tab Bar Icon up to 30 x 30 pts (transparent PNGs)
Text Field 31 pts
Height of a view inside 
a navigation bar
416 pts
Height of a view inside 
a tab bar
411 pts
Height of a view inside 
a navbar and a tab bar
367 pts
Portrait Keyboard height 216 pts
Landscape Keyboard height 162 pts

Points vs. Pixels

The iPhone 4 introduced a high resolution display with twice the pixels of previous iPhones. However you don't have to modify your code to support high-res displays; the coordinate system goes by points rather than pixels, and the dimensions in points of the screen and all UI elements remain the same.

iOS 4 supports high resolution displays (like the iPhone 4 display) via the scale property on UIScreen, UIView, UIImage, and CALayer classes. If the object is displaying high-res content, its scale property is set to 2.0. Otherwise it defaults to 1.0.

All you need to do to support high-res displays is to provide @2x versions of the images in your project. See the  or Apple documentation for  for more info.

Adjusting Sizes

Click here to see how to adjust .

Additional References

  • Apple Documentation: 
  • Apple Documentation:  says "Typically, the size of a toolbar and navigation bar image is 20 x 20 points."
  • Apple Documentation:  says "The size of an tab bar image is typically 30 x 30 points."

come from 
 
苹果4 和苹果4s :3.5寸  640*960
苹果5                 4寸    640*1136
苹果6                 4.7寸 750*1334
苹果6PLUS          5.5寸 1242*2208
 
 

转载于:https://www.cnblogs.com/likwo/archive/2011/10/25/2223626.html

你可能感兴趣的文章
document操作例题2-下拉列表与选项卡
查看>>
c++子类继承父类的覆盖问题
查看>>
[转]Sublime text2安装php beautifier
查看>>
oppo手机权限开启方法3.1
查看>>
vs2013给项目统一配置boost库
查看>>
详解Linux操作系统的进程
查看>>
java网络编程客户端与服务端原理以及用URL解析HTTP协议
查看>>
Audio Policy 分析
查看>>
sublime 关闭打开时候弹出的更新
查看>>
MSChart
查看>>
uva 12097—— Pie
查看>>
TensorFlow——学习率衰减的使用方法
查看>>
nyoj28 大数阶乘 亿进制优化
查看>>
Python3 函数式编程
查看>>
jQuery合并单元格以及还原重置
查看>>
strip()函数和 split()函数
查看>>
PHP服务器脚本 PHP内核探索:新垃圾回收机制说明
查看>>
基于 QQBot 实现简易 QQ 机器人
查看>>
炫酷的时钟--canvas初体验
查看>>
1-3-07:计算多项式的值
查看>>