美文网首页
Adaptive Layout

Adaptive Layout

作者: 方方1307007 | 来源:发表于2016-03-13 21:48 被阅读0次

设备适配手段

Trait(设备特性)iOS 8+

UITraitEnvironment protocol(UIScreen, UIWindow, UIViewController, UIPresentationController, UIView这些跟屏幕显示有关的类都实现这个protocol)

.traitCollection:UITraitCollection

vertical/horizontalSizeClass 有compact和regular两种 (Logic size of the screen)

displayScale (一个逻辑点会映射多少个像素 Point to Pixel:retina 2.0, non retina 1.0, 5.5 Inch iPhone 3.0)

userInterfaceIdiom 什么类型的设备(iPhone,iPad)

forceTouchCapability (new for iPhone6S)

Alignment Rectangle 布局时视为内容的区域

有一些界面组件可以提供自己的尺寸

用NSLog(@"%@",NSStringFromCGSize(view.intrinsicContentSize));看看界面组件的固有尺寸

相关文章

网友评论

      本文标题:Adaptive Layout

      本文链接:https://www.haomeiwen.com/subject/kqzwkttx.html