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

UI控件的常见属性

时间:2015-05-13 06:09:56      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

UIView的常见属性:

//获得自己的父控件对象
@property(nonatomic,readonly) UIView *superview;

//获得自己的所有子控件对象
@property(nonatomic,readonly,copy) NSArray *subviews;

//控件的ID\标识,父控件可以通过tag来找到对应的子控件
@property(nonatomic) NSInteger tag;

//控件的形变属性(可以设置旋转角度、比例缩放、平移等属性
@property(nonatomic) CGAffineTransform transform;
//控件所在矩形框在父控件中的位置和尺寸(以父控件的左上角为坐标原点)
@property(nonatomic) CGRect frame;

//控件所在矩形框的位置和尺寸(以自己左上角为坐标原点,所以bounds的x\y一般为0)
@property(nonatomic) CGRect bounds;

//控件中点的位置(以父控件的左上角为坐标原点)
@property(nonatomic) CGPoint center;
•在UIKit中,坐标系的原点(0,0)在左上角,x值向右正向延伸,y值向下正向延伸
技术分享

UILabel的常见属性:

//label显示的文字
@property(nonatomic,copy)   NSString *text;

//文字字体大小
@property(nonatomic,retain) UIFont *font;

//文字的颜色
@property(nonatomic,retain) UIColor *textColor;

//文字的排列方式(左对齐、居中、右对齐)枚举值
@property(nonatomic)NSTextAlignment textAlignment;

// 设置行数(行数==0代表自动换行)
@property(nonatomic) NSInteger numberOfLines;

UIImageView的常见属性:

// 所要显示的图片
@property(nonatomic,retain) UIImage *image;

// 设置序列帧动画数组(按顺序播放animationImages数组中的图片)
@property(nonatomic,copy) NSArray *animationImages;

// 序列帧动画的持续时间
@property(nonatomic) NSTimeInterval animationDuration;

// 序列帧动画的执行次数(默认是0,代表无限循环)
@property(nonatomic) NSInteger animationRepeatCount;

UIScrollView的常见属性:

// 表示UIScrollView所滚动的位置
@property(nonatomic) CGPoint contentOffset;

// 表示UIScrollView的内容尺寸(能滚动的范围)
@property(nonatomic) CGSize contentSize;

// 增加UIScrollView额外的边缘滚动区域
@property(nonatomic)UIEdgeInsets contentInset;

// 代理
@property(nonatomic,assign) id<UIScrollViewDelegate>delegate;

下图介绍了UIScrollView的几个常见属性

技术分享

 

 

待续................................

UI控件的常见属性

标签:

原文地址:http://www.cnblogs.com/hukezhu/p/4499137.html

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