iOS常用控件尺寸大集合

元素控件 尺寸(pts)
Window(含状态栏) 320 x 480
Status Bar的高度 20
Navigation Bar的高度 44
含Prompt的Navigation Bar的高度 74
Navigation Bar的图标 20×20(透明的png)
Tool Bar的高度 44
Tool Bar的图标 20×20(透明的png)
Tab Bar的高度 49
Tab Bar的图标 30×30(透明的png)
竖直时键盘的高度 216、252(iOS 5+的中文键盘)
水平时键盘的高度 162、198(iOS 5+的中文键盘)

iPhone App Icon:

图标名称 尺寸 用途 是否必需
Icon.png 57×57 App Store和iPhone、iPod touch桌面显示
[email protected] 114×114 Icon.png的高清模式
Icon-Small.png 29×29 “设置”应用和Soptlight搜索
[email protected] 58×58 Icon-Small.png的高清模式

iPad App Icon:

图标名称 尺寸 用途 是否必需
Icon-72.png 72×72 iPad桌面显示
Icon-50.png 50×50 Spotlight搜索
Icon-29.png 29×29 “设置”应用

iPhone、iPad通用App Icon:

图标名称 尺寸 用途 是否必需
Icon.png 57×57 App Store和iPhone、iPod touch桌面显示
Icon-72.png 72×72 iPad桌面显示
Icon-50.png 50×50 iPad的Soptlight搜索
Icon-29.png 29×29 “设置”应用和iPhone、iPod touch的Soptlight搜索

延伸阅读: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 checklist for updating to iOS4 or Apple documentation for Supporting High Resolution Screens for more info.

原文出处:http://dangpu.sinaapp.com/?p=59

iOS常用控件尺寸大集合,布布扣,bubuko.com

时间: 2024-10-02 00:08:59

iOS常用控件尺寸大集合的相关文章

iOS 常用控件的方法属性总结

一 UIVIew 常见属性1.frame 位置和尺寸(以父控件的左上角为原点(0,0))2.center 中点 (以父控件的左上角为原点(0,0))3.bounds 位置和尺寸(以自己的左上角为原点 (0,0))4.transform 形变属性(缩放,旋转)5.backgroundColor 背景颜色6.tag 标识(父控件可以根据这个标识找到对应的子控件,同一个父控件中的子控件不要一样)7. hidden 设置是否要隐藏8.alpha 透明度(0~1);9.opaque 不透明度(0~1);1

Xamarin.iOS常用控件总结

1.UIButton控件 btn.SetTitle("test", UIControlState.Normal); UIControlState枚举类型使用: Normal:默认可使用状态 Highlighted:当点击控件事件时控件的状态 Disabled:控件状态不可用 Selected:控件选中时的状态 Application: 使用Application的一个附加控件状态 Reserved: UIButton btn = UIButton.FromType(UIButtonTy

iOS常用控件-UIScrollView

一. 常见属性 @property (nonatomic) CGPoint contentOffset;                      //记录UIScrollView滚动的位置 @property (nonatomic) CGSize contentSize;                          // 内容尺寸 (能滚动的范围) @property (nonatomic) UIEdgeInsets contentInset;                // 额外增

iOS常用控件-UITableViewCell

一. 封装cell: 1.加载xib文件的两种方式 <方式1> (NewsCell是xib文件的名称) NSArray *objects = [[NSBundle mainBundle] loadNibNamed:@"NewsCell" owner:nil options:nil]; <方式2> UINib *nib = [UINib nibWithNibNamed:@"NewsCell" bundle:nil]; NSArry *objec

iOS 常用控件集合 完整项目

[Swift]高仿 爱范儿3.0 http://www.code4app.com/forum.php?mod=viewthread&tid=10053&page=1&extra=#pid220850 登陆界面+转场结合设计UI地址 http://www.code4app.com/forum.php?mod=viewthread&tid=10024&extra=page%3D1%26filter%3Dsortid%26sortid%3D1 一个基于React Nati

IOS 常用控件的使用

UIButton  //初始化 位置  UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(self.view.frame.size.width-180, 45, 80, 30)];     [btn.layer setCornerRadius:5.0]; //设置矩形四个圆角半径     [btn.layer setBorderWidth:1.0]; //边框宽度     CGColorSpaceRef colorSpace =

iOS常用控件默认高度

参考网址http://www.2cto.com/kf/201307/228020.html

IOS开发基础常用控件简介

在IOS开发中,各类控件完美的解决了开发过程中界面与交互展现的问题,使得IOS产品界面更加灵活实用,IOS常用控件的介绍如下. 1.窗口 UIWindow iPhone的规则是一个窗口,多个视图,窗口是你在app显示出来你看到的最底层,他是固定不变的,基本上可以不怎么理会,但要知道每层是怎样的架构. 2.视图 UIView, 是用户构建界面的基础,所有的控件都是在这个页面上画出来的,你可以把它当成是一个画布,你可以通过UIView增加控件,并利用控件和用户进行交互和传递数据. 窗口和视图是最基本

IOS Ui控件 修改位置和尺寸,代码添加控件

所有的UI控件最终都继承自UIView,UI控件的公共属性都定义在UIView中, UIView的常见属性 UIView *superview; 获得自己的父控件对象 NSArray *subviews; 获得自己的所有子控件对象 NSInteger tag; 控件的ID(标识),父控件可以通过tag来找到对应的子控件 CGAffineTransform transform; 控件的形变属性(可以设置旋转角度.比例缩放.平移等属性) CGRect frame; 控件所在矩形框在父控件中的位置和尺