欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS UIView常见属性方法小结

程序员文章站 2023-12-21 20:38:40
下面通过实例代码给大家详细介绍了ios uiview常见属性方法,具体代码如下所示: uiview : uiresponder /** 通过一个frame来...

下面通过实例代码给大家详细介绍了ios uiview常见属性方法,具体代码如下所示:

uiview : uiresponder
 /**
通过一个frame来初始化一个ui控件
 */
 - (id)initwithframe:(cgrect)frame;
 // yes:能够跟用户进行交互
@property(nonatomic,getter=isuserinteractionenabled) bool userinteractionenabled; // default is yes
// 控件的一个标记(父控件可以通过tag找到对应的子控件)
@property(nonatomic)                 nsinteger tag;        // default is 0
// 图层(可以用来设置圆角效果\阴影效果)
@property(nonatomic,readonly,retain)         calayer *layer;
@interface uiview(uiviewgeometry)
// 位置和尺寸(以父控件的左上角为坐标原点(0, 0))
@property(nonatomic) cgrect      frame;
// 位置和尺寸(以自己的左上角为坐标原点(0, 0))
@property(nonatomic) cgrect      bounds;
// 中点(以父控件的左上角为坐标原点(0, 0))
@property(nonatomic) cgpoint      center;   
// 形变属性(平移\缩放\旋转)
@property(nonatomic) cgaffinetransform transform;  // default is cgaffinetransformidentity
// yes:支持多点触摸
@property(nonatomic,getter=ismultipletouchenabled) bool multipletouchenabled;  // default is no
@end
@interface uiview(uiviewhierarchy)
 // 父控件
@property(nonatomic,readonly) uiview    *superview;
// 子控件(新添加的控件默认都在subviews数组的后面, 新添加的控件默认都显示在最上面\最顶部)
@property(nonatomic,readonly,copy) nsarray *subviews;
// 获得当前控件所在的window
@property(nonatomic,readonly) uiwindow   *window;
// 从父控件中移除一个控件
- (void)removefromsuperview;
// 添加一个子控件(可以将子控件插入到subviews数组中index这个位置)
- (void)insertsubview:(uiview *)view atindex:(nsinteger)index;
// 交换subviews数组中所存放子控件的位置
- (void)exchangesubviewatindex:(nsinteger)index1 withsubviewatindex:(nsinteger)index2;
// 添加一个子控件(新添加的控件默认都在subviews数组的后面, 新添加的控件默认都显示在最上面\最顶部)
- (void)addsubview:(uiview *)view;
// 添加一个子控件view(被挡在siblingsubview的下面)
- (void)insertsubview:(uiview *)view belowsubview:(uiview *)siblingsubview;
// 添加一个子控件view(盖在siblingsubview的上面)
- (void)insertsubview:(uiview *)view abovesubview:(uiview *)siblingsubview;
// 将某个子控件拉到最上面(最顶部)来显示
- (void)bringsubviewtofront:(uiview *)view;
// 将某个子控件拉到最下面(最底部)来显示
- (void)sendsubviewtoback:(uiview *)view;
/**系统自动调用(留给子类去实现)**/
- (void)didaddsubview:(uiview *)subview;
- (void)willremovesubview:(uiview *)subview;
- (void)willmovetosuperview:(uiview *)newsuperview;
- (void)didmovetosuperview;
- (void)willmovetowindow:(uiwindow *)newwindow;
- (void)didmovetowindow;
/**系统自动调用**/
 // 是不是view的子控件或者子控件的子控件(是否为view的后代)
- (bool)isdescendantofview:(uiview *)view; // returns yes for self.
 // 通过tag获得对应的子控件(也可以或者子控件的子控件)
- (uiview *)viewwithtag:(nsinteger)tag;   // recursive search. includes self
/**系统自动调用(留给子类去实现)**/
// 控件的frame发生改变的时候就会调用,一般在这里重写布局子控件的位置和尺寸
// 重写了这个写方法后,一定调用[super layoutsubviews];
- (void)layoutsubviews;
@end
@interface uiview(uiviewrendering)
// yes : 超出控件边框范围的内容都剪掉
@property(nonatomic)         bool       clipstobounds;
// 背景色
@property(nonatomic,copy)      uicolor     *backgroundcolor; // default is nil
// 透明度(0.0~1.0)
@property(nonatomic)         cgfloat      alpha;           // default is 1.0
// yes:不透明 no:透明
@property(nonatomic,getter=isopaque) bool       opaque;           // default is yes
 // yes : 隐藏 no : 显示
@property(nonatomic,getter=ishidden) bool       hidden;
 // 内容模式
 @property(nonatomic)         uiviewcontentmode contentmode;        // default is uiviewcontentmodescaletofill
 @end
 //动画
@interface uiview(uiviewanimationwithblocks)
+ (void)animatewithduration:(nstimeinterval)duration delay:(nstimeinterval)delay options:(uiviewanimationoptions)options animations:(void (^)(void))animations completion:(void (^)(bool finished))completion;
+ (void)animatewithduration:(nstimeinterval)duration animations:(void (^)(void))animations completion:(void (^)(bool finished))completion;
+ (void)animatewithduration:(nstimeinterval)duration animations:(void (^)(void))animations;
+ (void)animatewithduration:(nstimeinterval)duration delay:(nstimeinterval)delay usingspringwithdamping:(cgfloat)dampingratio initialspringvelocity:(cgfloat)velocity options:(uiviewanimationoptions)options animations:(void (^)(void))animations completion:(void (^)(bool finished))completion;
 @end

以上所述是小编给大家介绍的ios uiview常见属性方法小结,希望对大家有所帮助

上一篇:

下一篇: