标签:style blog class code java javascript
UIView的常见属性
1 @property(nonatomic,readonly) UIView *superview; 2 获得自己的父控件对象 3 4 @property(nonatomic,readonly,copy) NSArray *subviews; 5 获得自己的所有子控件对象 6 7 @property(nonatomic) NSInteger tag; 8 控件的ID\标识,父控件可以通过tag来找到对应的子控件 9 10 @property(nonatomic) CGAffineTransform transform; 11 控件的形变属性(可以设置旋转角度、比例缩放、平移等属性) 12 13 14 @property(nonatomic) CGRect frame; 15 控件所在矩形框在父控件中的位置和尺寸(以父控件的左上角为坐标原点) 16 17 @property(nonatomic) CGRect bounds; 18 控件所在矩形框的位置和尺寸(以自己左上角为坐标原点,所以bounds的x\y一般为0) 19 20 @property(nonatomic) CGPoint center; 21 控件中点的位置(以父控件的左上角为坐标原点)
UIView的常见方法
1 - (void)addSubview:(UIView *)view; 2 添加一个子控件view 3 4 - (void)removeFromSuperview; 5 从父控件中移除 6 7 - (UIView *)viewWithTag:(NSInteger)tag; 8 根据一个tag标识找出对应的控件(一般都是子控件)
标签:style blog class code java javascript
原文地址:http://www.cnblogs.com/htbcj/p/3703829.html