文件名称:iOS-UI控件常见属性总结
文件大小:17KB
文件格式:DOCX
更新时间:2018-12-06 09:24:33
IOS UI
1.UIView // 如果userInteractionEnabled=NO,不能跟用户交互 @property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // 控件的标记(父控件通过标记可以找到对应的子控件) @property(nonatomic) NSInteger tag; // 控件的位置和尺寸(以父控件的左上角为坐标原点) @property(nonatomic) CGRect frame; // 控件的位置和尺寸(以控件本身的左上角为坐标原点) @property(nonatomic) CGRect bounds; // 控件的中点位置(以父控件的左上角为坐标原点) @property(nonatomic) CGPoint center; // 形变属性:旋转、缩放、平移 @property(nonatomic) CGAffineTransform transform; // 父控件 @property(nonatomic,readonly) UIView *superview; // 所有的子控件 @property(nonatomic,readonly,copy) NSArray *subviews;