码迷,mamicode.com
首页 > 其他好文 > 详细

【UIKit】UIView的常见属性

时间:2014-08-05 00:21:18      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:blog   for   ar   div   log   c   ad   ui   

1.superview 

获得自己的父控件对象

@property(nonatomic,readonly)UIView *superview

 

2.subviews

 获得自己的所有子控件对象

@property(nonatomic,readonly,copy)NSArray *subviews;
    int count=self.view.subviews.count;
    NSLog(@"控件的个数有%d",count);

 

3.tag

控件的ID\标志,父控件可以通过tag来找到相应的子控件

@property (nonatomic)NSInteger tag;

 

4.frame

控件所在的矩形框位置和尺寸(以父控件的左上角为坐标原点)

@property (nonatomic)CGRect frame;

 

5.bounds

控件所在矩形框的位置和尺寸(以自己左上角为坐标原点,所以bounds的x\y永远为0)

@property (nonatomic)CGRect bounds;

 

6.center

控件中点的位置(以父控件的左上角为坐标原点)

@property(nonatomic)CGPoint center;

 

7.transform

控件的形变属性(可以设置旋转角度、缩放比例、平移等属性)

@property (nonatomic) CGAffineTransform transform;

【UIKit】UIView的常见属性,布布扣,bubuko.com

【UIKit】UIView的常见属性

标签:blog   for   ar   div   log   c   ad   ui   

原文地址:http://www.cnblogs.com/iflewless/p/3891172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!