摘要: #View的自适应属性autoresizingMask属性每一个UIView都有一个autoresizingMask属性,这个属性是用于适应父视图的大小与子视图适应的,源码如下```enum { UIViewAutoresizingNone = 0, UIViewAutoresizingFlexibleLeftMargin = 1 << 0, UIV... 阅读全文
posted @ 2014-10-20 10:39 wisejoker 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #Hidden、Alpha、Opaque的区别###在iOS中,每个View都有Hidden、Alpha、Opaque三个关于透明的属性,官方文档介绍如下:```1. @property(nonatomic) CGFloat alpha;This value affects only the current view and does not affect any of its embedded ... 阅读全文
posted @ 2014-10-20 10:26 wisejoker 阅读(5066) 评论(0) 推荐(0) 编辑