5. UIView

1. UIView 的初认识

官方文档 UIView class defines a rectangular area on the screen and the interfaces for managing the content in that area.At runtime, a view object handles the rendering of any content in its area and also handles any interactions with that content.(UIView在屏幕上定义了一个矩形区域和管理区域内容的接口。在运行时,一个视图对象控制该区域的渲染,同时也控制内容的交互。)UIView就相当于一块白墙,这块白墙只是负责把加入到里面的东西显示出来而已。

也可以说UIView表示屏幕上的一块矩形区域,它在App中占有绝对重要的地位,因为IOS中几乎所有可视化控件都是UIView的子类。负责渲染区域的内容,并且响应该区域内发生的触摸事件,可以这么说在iphone里你看到的,摸到的,都是UIView。所以UIView 在iOS开发中拥有很重要的地位

2. UIView 的使用

2.1 基本使用方法

UIView *viewOne = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];

// 设置背景颜色

viewOne.backgroundColor = [UIColor redColor];

// 设置view 中心的位置

viewOne.center = CGPointMake(200, 200);

// 设置透明度(如果父视图的透明度改变了,所有子视图都改变)

viewOne.alpha = 0.5;

// 隐藏,如果父视图隐藏,那么子视图也会隐藏(隐藏和透明度设置成0 效果一样,但是隐藏类似于移除(但是并没有删除),透明度设置成0 控件还是存在,只是我们看不到)

view.hidden = YES;

// 切掉子视图超出的部分,也就是如果一个视图超出了他所添加在的UIView,那么超出的部分就会被切除

viewOne.clipsToBounds = YES;

// 把子视图从父视图上移除

[subView1 removeFromSuperview];

// 禁止视图接受事件(父视图不能接受 子视图同样不能)

superView.userInteractionEnabled = YES;

// 获取父视图

UIView *view = subView1.superview;

// 获取子视图(可以遍历子视图数组,取出你想获取的视图)

NSArray *array = superView.subviews;

// 如果子视图中有这个tag的视图,直接取出。 如果没有就会深度遍历子视图的子视图去找这个tag的子视图,如果还是没有 返回nil

UIView *sView = [superView viewWithTag:11];

// 鉴定父子关系

// isDescendantOfView 判断一个视图是不是另一个视图的直接或间接的子视图

BOOL boo = [subView1 isDescendantOfView:superView];

// 拓展方法

  • //将一个视图移到前面
  • bringSubviewToFront:
  • //将一个视图推送到背后
  • sendSubviewToBack:
  • //把视图移除
  • removeFromSuperview
  • //插入视图 并指定索引
  • insertSubview:atIndex:
  • //插入视图在某个视图之上
  • insertSubview:aboveSubview:
  • //插入视图在某个视图之下
  • insertSubview:belowSubview:
  • //交换两个位置索引的视图
  • exchangeSubviewAtIndex:withSubviewAtIndex:

2.2 仿射变换

// 1. view 旋转(顺时针旋转多少度)

view.transform = CGAffineTransformMakeRotation(M_PI / 3);

// 2. view 变形(参数一作用:宽 * 比例  参数一作用:高 * 比例)(中心点不变)

view.transform = CGAffineTransformMakeScale(1, 2);

// 3. 平移(1. 平移目标 2.在水平方向平移多少(正值 右移  负值 左移)3.在垂直方向平移多少(正值 下移  负值 上移))

view.transform = CGAffineTransformTranslate(view.transform, - 100, 0);

2.3 动画

// 参数1:动画时间 animations block:在这个时间要完成的动画

[UIView animateWithDuration:1.0 animations:^{

CGRect frame = _view.frame;

frame.origin.y += 200;

_view.frame = frame;

}];

// 参数1:动画时间 animations block:在这个时间要完成的动画 completion block:这个动画执行完成之后要做什么操作

[UIView animateWithDuration:2.0 animations:^{

CGRect frame = _view.frame;

frame.origin.y += 200;

_view.frame = frame;

_view.alpha = 0;

} completion:^(BOOL finished) {

[UIView animateWithDuration:2.0 animations:^{

CGRect frame = _view.frame;

frame.origin.y -= 200;

_view.frame = frame;

_view.alpha = 1;

}];

}];

一个UIView动画的简单Demo https://github.com/mcj122755/UIViewDemo5.git

时间: 2025-01-01 23:53:16

5. UIView的相关文章

CALayer 与 UIView

1.关系 On iOS, every UIView is backed by a Core Animation CALayer. Simply speaking,UIView inherit from NSResponder,handle events from users, contains CALayer,which inherit from NSObject,mainly focus on rendering,animation etc. One thing UIViews provide

UIView /  UIView的布局

//! 一个视图可以有n个子视图,但是一个视图只能有一个父视图 struct CGRect {   CGPoint origin;   CGSize size; }; CGRectMake(CGFloat x, CGFloat y, CGFloat width, CGFloat height) {   CGRect rect;   rect.origin.x = x; rect.origin.y = y;   rect.size.width = width; rect.size.height =

IOS - UIView添加点击事件

UIView通过手势(Gesture-UITapGestureRecognizer)添加点击事件, 类似于UIButton的效果. 示例: UIImageView *iKnowIcon = [CYResource loadImageView:@"free-question-once-more-i-know.png"]; iKnowIcon.top = questionIcon.top + scaleWidthWith320(200); iKnowIcon.centerX = self.

【iOS开发-触摸】移动的UIView例子

iOS触摸 方法: //开始接触 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; - //在屏幕上移动 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; - //触摸结束 - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; - //取消触摸 - (voi

Objective - C学习笔记:UIView的使用方法

1.1 - (void)layoutSubviews; * 当一个控件的frame发生改变的时候就会自动调用 * 一般在这里布局内部的子控件(设置子控件的frame) * 一定要调用super的layoutSubviews方法 1.2 - (void)didMoveToSuperview; * 当一个控件被添加到父控件中就会调用 1.3 - (void)willMoveToSuperview:(UIView *)newSuperview; * 当一个控件即将被添加到父控件中会调用 @interf

<iOS小技巧>UIview指定设置控件圆角

一.用法: 众所周知,设置控件的圆角使用layer.cornerRadius属性即可,但是这样设置成的结果是4个边角都是圆角类型. 利用班赛尔曲线画角: //利用班赛尔曲线画角 UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:button.bounds byRoundingCorners:(UIRectCornerBottomLeft |UIRectCornerBottomRight) cornerRadii:

iOS开发-UI (一)补充 UIWindow UIView UIlabel

之前忘了把这些整理出来,现在补充一下,应该放在前面学习的 知识点: 1.UI的初步认识 2.UIWindow 3.UIView 4.UIlabel ======================== UI的初步认识 1.什么是UI(*) UI即User Interface(用户界面)的简称.UI设计则是指对软 件的人机交互.操作逻辑.界面美观的整体设计.好的UI设 计不仅是让软件变得有个性有品味,还要让软件的操作变得 舒适.简单.自由.充分体现软件的定位和特点. 2.第一个UI工程 1)UI工程的

UIView的常见方法

- (void)addSubview:(UIView *)view; 添加一个子控件view - (void)removeFromSuperview; 将自己从父控件中移除 - (UIView *)viewWithTag:(NSInteger)tag; 根据一个tag标识找出对应的控件(一般都是子控件)

UIView的常见属性

@property(nonatomic,readonly) UIView *superview; 获得自己的父控件对象 @property(nonatomic,readonly,copy) NSArray *subviews; 获得自己的所有子控件对象 @property(nonatomic) NSInteger tag; 控件的ID(标识),父控件可以通过tag来找到对应的子控件 @property(nonatomic) CGAffineTransform transform; 控件的形变属性

UIView的分类--iOS

#import <UIKit/UIKit.h> @interface UIView (PJXExtension) @property(assign,nonatomic) CGFloat x; //x坐标 @property(assign,nonatomic) CGFloat y; //y坐标 @property(assign,nonatomic) CGFloat width; //宽度 @property(assign,nonatomic) CGFloat height; //高度 @prop