[self.view insertSubview:girlView belowSubview:bottomView];//把girlView插入到bottomView后面
[self.view insertSubview:girlView aboveSubview:bottomView];//把girlView插入到bottomView前面
[self.view insertSubview:girlView atIndex:0];//把girlView插入到0层
[self.view bringSubviewToFront:girlView];//把girlView移到最前
[self.view sendSubviewToBack:girlView];//把girlView移到最后
如果想调用某个类的某个方法可以写成这样,这个方法来自NSObject类
- performSelector:
- performSelector:withObject:
- performSelector:withObject:withObject:
实际调用
- [self performSelector:@selector(displayViews) withObject:nil afterDelay:1.0f];
有三个方法分别是
- //父视图
- [self.view superview]
- //所有子视图
- [self.view subviews]
- //自身的window
- self.view.window
循环一个视图下面所有视图的方法
- NSArray *allSubviews(UIView *aView)
- {
- NSArray *results = [aView subviews];
- for (UIView *eachView in [aView subviews])
- {
- NSArray *riz = allSubviews(eachView);
- if (riz) {
- results = [results arrayByAddingObjectsFromArray:riz];
- }
- }
- return results;
- }
循环返回一个APPLICATION里面所有的VIEW
- // Return all views throughout the application
- NSArray *allApplicationViews()
- {
- NSArray *results = [[UIApplication sharedApplication] windows];
- for (UIWindow *window in [[UIApplication sharedApplication] windows])
- {
- NSArray *riz = allSubviews(window);
- if (riz) results = [results arrayByAddingObjectsFromArray: riz];
- }
- return results;
- }
找出所有的父视图
- // Return an array of parent views from the window down to the view
- NSArray *pathToView(UIView *aView)
- {
- NSMutableArray *array = [NSMutableArray arrayWithObject:aView];
- UIView *view = aView;
- UIWindow *window = aView.window;
- while (view != window)
- {
- view = [view superview];
- [array insertObject:view atIndex:0];
- }
- return array;
- }
UIView提供了大量管理视图的方法
- //加一个视图到一个视图里面
- addSubview:
- //将一个视图移到前面
- bringSubviewToFront:
- //将一个视图推送到背后
- sendSubviewToBack:
- //把视图移除
- removeFromSuperview
- //插入视图 并指定索引
- insertSubview:atIndex:
- //插入视图在某个视图之上
- insertSubview:aboveSubview:
- //插入视图在某个视图之下
- insertSubview:belowSubview:
- //交换两个位置索引的视图
- exchangeSubviewAtIndex:withSubviewAtIndex:
视图回调
- //当加入视图完成后调用
- (void)didAddSubview:(UIView *)subview
- //当视图移动完成后调用
- (void)didMoveToSuperview
- //当视图移动到新的WINDOW后调用
- (void)didMoveToWindow
- //在删除视图之后调用
- (void)willRemoveSubview:(UIView *)subview
- //当移动视图之前调用
- (void)didMoveToSuperview:(UIView *)subview
- //当视图移动到WINDOW之前调用
- (void)didMoveToWindow
给UIView设置标记和检索视图
- myview.tag = 1001;
- [self.view viewWithTag:1001];
- (UILable *)[self.view.window viewWithTag:1001];
视图的几何特征
- //框架
- struct CGPoint {
- CGFloat x;
- CGFloat y;
- };
- typedef struct CGPoint CGPoint;
- /* Sizes. */
- struct CGSize {
- CGFloat width;
- CGFloat height;
- };
- typedef struct CGSize CGSize;
- struct CGRect {
- CGPoint origin;
- CGSize size;
- };
- typedef struct CGRect CGRect;
- CGRect rect = CGRectMake(0,0,320,480);
- UIView *view = [[UIView allow]initWithFrame:rect];
- //将String转成CGPoint 如 @”{3.0,2.5}” {x,y}
- CGPoint CGPointFromString (
- NSString *string
- );
- //将String转成CGRect @”{{3,2},{4,5}}” {{x,y},{w, h}}
- CGRect CGRectFromString (
- NSString *string
- );
- //将String转成CGSize @”{3.0,2.5}” {w, h}
- CGSize CGSizeFromString (
- NSString *string
- );
- //CGPoint转成NSString
- NSString * NSStringFromCGPoint (
- CGPoint point
- );
- //CGRect转成NSString
- NSString * NSStringFromCGRect (
- CGRect rect
- );
- //CGSize转成NSString
- NSString * NSStringFromCGSize (
- CGSize size
- );
- //对一个CGRect进行修改 以这个的中心来修改 正数表示更小(缩小) 负数表示更大(放大)
- CGRect CGRectInset (
- CGRect rect,
- CGFloat dx,
- CGFloat dy
- );
- //判断两个矩形是否相交
- bool CGRectIntersectsRect (
- CGRect rect1,
- CGRect rect2
- );
- //初始为0的
- const CGPoint CGPointZero;
- const CGRect CGRectZero;
- const CGSize CGSizeZero;
- //创建CGPoint
- CGPoint CGPointMake (
- CGFloat x,
- CGFloat y
- );
- //创建CGRect
- CGRect CGRectMake (
- CGFloat x,
- CGFloat y,
- CGFloat width,
- CGFloat height
- );
- //创建CGSize
- CGSize CGSizeMake (
- CGFloat width,
- CGFloat height
- );
仿射变换
- CGAffineTransform form = CGAffineTransformMakeRotation(PI);
- myview.transform = form;
如想复原
- myview.transform = CGAffineTransformIdentity;
直接设置视图的中心
- myview.center = CGPointMake(100,200);
中心
- CGRectGetMinX
- CGRectGetMinY
- //X的中间值
- CGRectGetMidX
- //Y的中间值
- CGRectGetMidY
- CGRectGetMaxX
- CGRectGetMaxY
定时器
- NSTime *timer = [NSTimer scheduledTimerWithTimeInterval:0.1f target:self selector:@selector(move:) userInfo:nil repeats:YES];
定义视图边界
- typedef struct UIEdgeInsets {
- CGFloat top, left, bottom, right; // specify amount to inset (positive) for each of the edges. values can be negative to 'outset'
- } UIEdgeInsets;
- //eg
- UIEdgeInsets insets = UIEdgeInsetsMake(5, 5, 5, 5);
- CGRect innerRect = UIEdgeInsetsInsetRect([aView bounds], insets);
- CGRect subRect = CGRectInset(innerRect, self.frame.size.width / 2.0f, self.frame.size.height / 2.0f);
仿射变换补充
//创建CGAffineTransform
- //angle 在0-2*PI之间比较好 旋转
- CGAffineTransform transform = CGAffineTransformMakeRotation(angle);
- //缩放
- CGAffineTransform transform = CGAffineTransformMakeScale(0.5f,0.5f);
- //改变位置的
- CGAffineTransform transform = CGAffineTransformMakeTranslation(50,60);
- //修改CGAffineTransform
- //修改 缩放
- CGAffineTransform scaled = CGAffineTransformScale(transform, degree, degree);
- //修改 位置
- CGAffineTransform transform = CGAffineTransformTranslate(
- CGAffineTransform t,
- CGFloat tx,
- CGFloat ty
- );
- //修改角度
- CGAffineTransform transform = CGAffineTransformRotate (
- CGAffineTransform t,
- CGFloat angle
- );
- //最后设置到VIEW
- [self.view setTransform:scaled];
建立UIView动画块
//首先建立CGContextRef
- CGContextRef context = UIGraphicsGetCurrentContext();
- //标记动画开始
- [UIView beginAnimations:nil context:context];
- //定义动画加速或减速的方式
- [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
- //定义动画的时长 1秒
- [UIView setAnimationDuration:1.0];
- //中间处理 位置变化,大小变化,旋转,等等的
- [[self.view viewWithTag:999] setAlpha:1.0f];
- //标志动画块结束
- [UIView commitAnimations];
- //还可以设置回调
- [UIView setAnimationDelegate:self];
- //设置回调调用的方法
- [UIView setAnimationDidStopSelector:@selector(animationFinished:)];
视图翻转
- UIView *whiteBackdrop = [self.view viewWithTag:100];
- // Choose left or right flip 选择左或右翻转
- if ([(UISegmentedControl *)self.navigationItem.titleView selectedSegmentIndex]){
- [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:whiteBackdrop cache:YES];
- }else{
- [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:whiteBackdrop cache:YES];
- }
- NSInteger purple = [[whiteBackdrop subviews] indexOfObject:[whiteBackdrop viewWithTag:999]];
- NSInteger maroon = [[whiteBackdrop subviews] indexOfObject:[whiteBackdrop viewWithTag:998]];
- //交换视图
- [whiteBackdrop exchangeSubviewAtIndex:purple withSubviewAtIndex:maroon];
- //还有上翻和下翻两种 如下
- typedef enum {
- //没有任何效果
- UIViewAnimationTransitionNone,
- UIViewAnimationTransitionFlipFromLeft,
- UIViewAnimationTransitionFlipFromRight,
- UIViewAnimationTransitionCurlUp,
- UIViewAnimationTransitionCurlDown,
- } UIViewAnimationTransition;
使用QuartzCore做动画
- //创建CATransition
- CATransition *animation = [CATransition animation];
- //设置代理
- animation.delegate = self;
- //设置动画过渡的时间
- animation.duration = 4.0f;
- //定义动画加速或减速的方式
- animation.timingFunction = UIViewAnimationCurveEaseInOut;
- //animation.type 表示设置过渡的种类 如 Fade,MoveIn,Push,Reveal
- switch ([(UISegmentedControl *)self.navigationItem.titleView selectedSegmentIndex]) {
- case 0:
- animation.type = kCATransitionFade;
- break;
- case 1:
- animation.type = kCATransitionMoveIn;
- break;
- case 2:
- animation.type = kCATransitionPush;
- break;
- case 3:
- animation.type = kCATransitionReveal;
- default:
- break;
- }
- //设置渐变的方向,上下左右
- if (isLeft)
- animation.subtype = kCATransitionFromRight;
- else
- animation.subtype = kCATransitionFromLeft;
- // Perform the animation
- UIView *whitebg = [self.view viewWithTag:10];
- NSInteger purple = [[whitebg subviews] indexOfObject:[whitebg viewWithTag:99]];
- NSInteger white = [[whitebg subviews] indexOfObject:[whitebg viewWithTag:100]];
- [whitebg exchangeSubviewAtIndex:purple withSubviewAtIndex:white];
- [[whitebg layer] addAnimation:animation forKey:@"animation"];
animation.type还可以用以下的赋值
- switch (theButton.tag) {
- case 0:
- animation.type = @"cube";
- break;
- case 1:
- animation.type = @"suckEffect";
- break;
- case 2:
- animation.type = @"oglFlip";
- break;
- case 3:
- animation.type = @"rippleEffect";
- break;
- case 4:
- animation.type = @"pageCurl";
- break;
- case 5:
- animation.type = @"pageUnCurl";
- break;
- case 6:
- animation.type = @"cameraIrisHollowOpen ";
- break;
- case 7:
- animation.type = @"cameraIrisHollowClose ";
- break;
- default:
- break;
- }
上面这个是转自这里的http://2015.iteye.com/blog/1122130
休眠一下
- [NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:1.0f]];
一个简单的通过图片做的动画
- // Load butterfly images
- NSMutableArray *bflies = [NSMutableArray array];
- for (int i = 1; i <= 17; i++){
- [bflies addObject:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"bf_%d", i] ofType:@"png"]]];
- }
- UIImageView *butterflyView = [[UIImageView alloc] initWithFrame:CGRectMake(40.0f, 300.0f, 60.0f, 60.0f)];
- butterflyView.tag = 300;
- //设置动画的图片
- butterflyView.animationImages = bflies;
- //设置时间
- butterflyView.animationDuration = 0.75f;
- [self.view addSubview:butterflyView];
- //开始动画
- [butterflyView startAnimating];
- [butterflyView release];
UIView 3D 旋转
//围绕y轴旋转PI,即镜面效果
view.layer.transform = CATransform3DConcat(view.layer.transform, CATransform3DMakeRotation(M_PI,0.0,1.0,0.0));
一些例子:
//使view围绕view的左下角这个点旋转90度
UIView *view = [self.view viewWithTag:100];//获取一个view
CGAffineTransform transform = CGAffineTransformMakeRotation(-M_PI*0.5);//逆时针为负数,正则是顺时针
CGRect frame = view.frame;
view.layer.anchorPoint =CGPointMake(0,1);//设置旋转的中心点(锚点)
view.frame = frame;//设置anchorPont会使view的frame改变。重新赋值。
//一个2秒的动画,实现旋转。
[UIView beginAnimations:nilcontext:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationDuration:2.0f];
view.transform = transform;
[UIView commitAnimations];
*****************
view.transform = CGAffineTransformMakeScale(0.5,0.5);//缩放50%
view.transform = CGAffineTransformIdentity;//还原
翻书效果:
1、
CGRect frame = view.frame;
view.layer.anchorPoint = CGPointMake(1.0f, 0.5f);
view.frame = frame;
[UIView beginAnimations:nilcontext:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationDuration:2.0f];
view.layer.transform = CATransform3DMakeRotation(M_PI*0.5, 0.0, 1.0, 0);
[UIView commitAnimations];
2、
CGRect frame = view.frame;
view.layer.anchorPoint = CGPointMake(1.0f, 0.5f);
view.frame = frame;
view.layer.position = CGPointMake(view.layer.position.x + view.bounds.size.width/2.0f, view.layer.position.y);
CABasicAnimation *animation = [CABasicAnimationanimationWithKeyPath:@"transform"];
animation.duration = 2.0f;
animation.timingFunction = [CAMediaTimingFunctionfunctionWithName:kCAMediaTimingFunctionEaseInEaseOut];
CATransform3D tfm = CATransform3DMakeRotation(M_PI/2.0f, 0.0f, 1.0f, 0.0f);
tfm.m34 = 0.001f;
tfm.m14 = -0.0015f;
animation.fromValue = [NSValuevalueWithCATransform3D:CATransform3DIdentity];
animation.toValue = [NSValue valueWithCATransform3D:tfm];
[view.layer addAnimation:animation forKey:@"flipUp"];
两种效果一样。
动画的各种几何特性,大都可以通过此方法设定:
- [myLayer setValue:[NSNumber numberWithInt:0] forKeyPath:@"transform.rotation.x"];
[myLayer setValue:[NSNumber numberWithInt:0] forKeyPath:@"transform.rotation.x"];
从官方的API上的解释,可以看出 hitTest方法中,要先调用PointInside:withEvent:,看是否要遍历子视图。如果我们不想让某个视图响应事件,只需要重载PointInside:withEvent:方法,让此方法返回NO就行了。
相关推荐
7. `viewDidDisappear`方法在视图被隐藏后调用,开发者可以在这里执行一些后续的清理工作,比如处理用户交互相关的逻辑,以及结束一些需要在视图显示期间执行的任务。 8. `didReceiveMemoryWarning`方法在应用程序...
在iOS开发中,UIView是构建用户...以上就是“UIView相关示例代码”所涵盖的知识点,通过学习和实践这些内容,开发者能够更好地理解和掌握iOS应用的界面设计和交互实现。这个示例代码是理解并掌握这些基础概念的好起点。
首先,`UIView`动画是通过`UIView`类提供的动画方法来实现的,这些方法允许我们以平滑、流畅的方式改变视图的属性,如位置、大小、透明度等。例如,我们可以使用`animate(withDuration:animations:)`方法来执行一个...
总结来说,`UIView+Utils`是对`UIView`类的扩展,提供了获取和操作视图尺寸的便利方法,以及与布局、动画相关的辅助功能,大大提升了iOS开发的效率。在使用时,开发者只需引入相应的库,就可以轻松调用这些方法,...
**正文** `UIView`是iOS应用开发中的核心组件,它在Objective-C(OC)中扮演着重要的角色。本文将深入探讨`UIView`的基本概念...通过下载提供的资料,你可以深入学习`UIView`的相关知识,进一步提升你的iOS开发技能。
然后,通过调用UIView的`drawViewHierarchyInRect:afterScreenUpdates:`方法,将整个视图层次结构绘制到这个图形上下文。这一步会捕获视图及其子视图的所有内容。 2. **从图形上下文获取UIImage**: 绘制完成后,...
在Swift中,我们可以创建一个名为`Progressable`的协议,定义进度条的相关属性和方法。比如,我们可以定义`progress`属性来存储当前的进度值,以及`setProgress(_:animated:)`方法来更新进度,并提供动画效果。这样...
`Blurable`协议可能包含一个或多个相关的方法或属性,用于描述视图如何应用高斯模糊。例如,可以有一个`blur()`方法,该方法负责实现模糊效果。 2. **协议扩展实现**: 在协议扩展中,开发者会实现`blur()`方法的...
标题中的"swift-Twinkle-✨一个Swift和简单的方法能让任何UIView产生闪烁效果"指出了这个库的核心功能:用Swift编写,提供一种简洁的方式,使任何UIView对象都能实现闪烁效果。这使得开发者无需深入学习复杂的动画...
例如,`UIViewController`可以有一个方法`updateUserInfo(UserInfoModel userInfo)`,这个方法接收用户数据模型,并将其设置到`UserInfoView`的相关属性上,如`usernameLabel.text = userInfo.username`。...
在这个例子中,我们添加了一个名为`UIView+Extension`的分类,对`UIView`进行扩展,添加了一些便捷的方法来直接设置`frame`的相关属性。 通常,`UIView`的`frame`属性是一个`CGRect`结构体,包含`origin`和`size`两...
4. **连接IBOutlet和IBAction**:在Interface Builder中,我们可以将NIB文件中的UI元素与`UIView`子类的属性(IBOutlet)和方法(IBAction)连接起来,以便在代码中直接操作这些元素。 5. **使用NIB父类**:现在...
下面,我们将详细讨论与`UIView`相关的知识点。 1. **UIView基本概念**:`UIView`是所有UI元素的基类,包括按钮、文本框、标签等。它负责在屏幕上绘制内容,管理子视图的布局,并处理触控事件。 2. **视图层次**:...
`UIViewExt` 工具类是对 `UIView` 的扩展,它旨在简化开发者在处理 UI 控件时的一些常见任务,例如获取控件的位置、大小等相关属性。 `UIViewExt` 类通常包含一系列静态方法或扩展的方法,这些方法使得开发者能够更...
UIView本身,更像是一个管理器,访问它的跟绘图和跟坐标有关的属性,例如frame,bounds等等,实际上内部都是在访问它所包含的CALayer的相关属性。 在一个UIView对象中有以下的动画化属性: * frame:你可以使用这...
动画也是`UIView`的重要特性之一,通过`UIView.animate(withDuration:animations:)`方法,我们可以轻松地实现视图的各种动画效果,如平移、旋转、缩放等。 总之,`UIView`是iOS开发中的核心组件,理解和熟练掌握其...
UIView的加载流程通常与UIViewController紧密相关。一个UIViewController可以管理多个UIView,而UIView的加载时机和方式会直接影响到应用的性能和用户体验。 #### 1. loadView方法 loadView是UIViewController中的...
在上面的代码中,我们可以看到LifeView类继承自UIView,并实现了相关的生命周期方法。在viewDidLoad方法中,我们实例化了LifeView对象,并将其添加到父视图中。接着,在LifeView的生命周期中,我们可以看到相关的...
在`UIView`的动画方法中,可以设置`repeatCount`参数来决定动画执行的次数,若设置为`Float.infinity`,则动画将无限循环。 在压缩包内的"AnimationView"很可能是一个自定义的UIView子类,这个子类扩展了UIView的...