iOS 动画 —— 橡皮筋

接着上一个动画继续学习UIDynamic Animation 相关,通过 UIGravityBehavior 重力行为、UICollisionBehavior 碰撞行为、UIAttachmentBehavior吸附行为实现橡皮筋的功能。

将其创建为 View,通过子 View 逐一设置来特征

  • RubberBaseView -- 初始化 View
  • RubberAttachView -- 增加吸附行为
  • RubberView -- 增加弹性行为
#import <UIKit/UIKit.h>

@interface RubberBaseView : UIView

@property (nonatomic, strong) UIImageView *box;
@property (nonatomic, strong) UIDynamicAnimator *animator;

@end
#import "RubberBaseView.h"

@implementation RubberBaseView

- (instancetype)initWithFrame:(CGRect)frame {
    
    self = [super initWithFrame:frame];
    if (self) {
        // 设置背景颜色(通过图片)
        self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"back"]];
        // 设置方块 橡皮
        _box = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"rubber"]];
        _box.center = self.center;
        [self addSubview: _box];
        
        // 创建UIDynamicAnimator
        _animator = [[UIDynamicAnimator alloc] initWithReferenceView:self];
    }
    return self;
}

#import "RubberBaseView.h"

@interface RubberAttachView : RubberBaseView

@property (strong, nonatomic) UIAttachmentBehavior *attachment;

@end

#import "RubberAttachView.h"

@implementation RubberAttachView {
     UIImageView          *_imageView;
}

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        
        //  添加拖动手势
        UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(pan:)];
        [self addGestureRecognizer:pan];
        
        //  添加附着行为
        UIOffset offset = UIOffsetMake(-25, -25);
        _attachment = [[UIAttachmentBehavior alloc] initWithItem:self.box offsetFromCenter:offset attachedToAnchor:CGPointMake(self.box.center.x, self.box.center.y - 100)];
        [self.animator addBehavior:_attachment];
        
        //  添加box内部锚点图像
        _imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"lineCircle"]];
        _imageView.center = CGPointMake(self.box.bounds.size.width / 2 + offset.horizontal, self.box.bounds.size.height / 2 + offset.vertical);
        [self.box addSubview:_imageView];
    }
    return self;
}

- (void)pan:(UIPanGestureRecognizer *)gesture {
    
    if (UIGestureRecognizerStateChanged == gesture.state) {
        self.attachment.anchorPoint = [gesture locationInView:self];
        // 重新绘制
        [self setNeedsDisplay];
    }
}

- (void)drawRect:(CGRect)rect
{
    // 上下文
    CGContextRef context = UIGraphicsGetCurrentContext();
    // 位置
    CGPoint position = [self convertPoint:_imageView.center fromView:self.box];
    // 设置开始点
    CGContextMoveToPoint(context, position.x, position.y);
    CGContextAddLineToPoint(context, self.attachment.anchorPoint.x, self.attachment.anchorPoint.y);
    // 设置线宽
    CGContextSetLineWidth(context, 5.0f);
    CGFloat length[] = {5.0, 5.0};
    CGContextSetLineDash(context, 0.0, length, 2);
    [[UIColor blackColor] set];
    // 设置路径
    CGContextDrawPath(context, kCGPathStroke);
}

@end
#import "RubberAttachView.h"

@interface RubberView : RubberAttachView

@end
#import "RubberView.h"

static NSString *const RubberViewCenterKVOName = @"center";

@implementation RubberView

- (instancetype)initWithFrame:(CGRect)frame {
    
    self = [super initWithFrame:frame];
    if (self) {
        // 设置物理属性
        self.attachment.damping = 1; // 震荡
        self.attachment.frequency = 1; // 阻力
        // 设置观察者,在手指离开以后继续画线
        [self.box addObserver:self forKeyPath:RubberViewCenterKVOName options:NSKeyValueObservingOptionNew context:nil];
        
        //创建并添加重力
        UIGravityBehavior *gravity = [[UIGravityBehavior alloc] initWithItems:@[self.box]];
        [self.attachment addChildBehavior:gravity];
        
        //创建并添加碰撞行为对象
        UICollisionBehavior *collision = [[UICollisionBehavior alloc] initWithItems:@[self.box]];
        collision.translatesReferenceBoundsIntoBoundary = YES;
        [self.attachment addChildBehavior:collision];
    }
    return self;
}

- (void)dealloc {
    [self.box removeObserver:self forKeyPath:RubberViewCenterKVOName];
}

//画线
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    if ([keyPath isEqualToString:RubberViewCenterKVOName]) {
        [self setNeedsDisplay];
    }
    
}
@end

最后实现

#import "ViewController.h"
#import "RubberView.h"

#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height

@interface ViewController ()

@property (nonatomic, strong) RubberView *rubberView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self.view addSubview:self.rubberView];
}

- (RubberView *)rubberView  {
    if (!_rubberView) {
        _rubberView = [[RubberView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
    }
    return _rubberView;
}

@end

注意点1: 此处为什么要通过 子类的 View(继承) 逐一去设置呢?

  • 方便理解,一目了解
  • 不改变原来的基础上,拓充方法,扩充功能性强。

当然此处也可以不这样写咯。

注意点2: UIAttachmentBehavior

附着行为,让物体附着在某个点或另外一个物体上。可以设置附着点的到物体的距离,阻尼系数和振动频率等。

_attachment = [[UIAttachmentBehavior alloc] initWithItem:self.box offsetFromCenter:offset attachedToAnchor:CGPointMake(self.box.center.x, self.box.center.y - 100)];

注意这个初始化中方法的offset 和 point 的设置(就是决定线和 box 位置和距离的),当然UIAttachmentBehavior 还有其他的初始化方法,可以根据不同场景相应使用。

- (instancetype)initWithItem:(id <UIDynamicItem>)item attachedToAnchor:(CGPoint)point;
- (instancetype)initWithItem:(id <UIDynamicItem>)item offsetFromCenter:(UIOffset)offset attachedToAnchor:(CGPoint)point NS_DESIGNATED_INITIALIZER;

- (instancetype)initWithItem:(id <UIDynamicItem>)item1 attachedToItem:(id <UIDynamicItem>)item2;
- (instancetype)initWithItem:(id <UIDynamicItem>)item1 offsetFromCenter:(UIOffset)offset1 attachedToItem:(id <UIDynamicItem>)item2 offsetFromCenter:(UIOffset)offset2 NS_DESIGNATED_INITIALIZER;

PS:场景来自:【iOS开发范例实战宝典.进阶篇】。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 本文中所有代码演示均有GitHub源码,点击下载 UIDynamic简介 简介:UIKit动力学最大的特点是将现实...
    si1ence阅读 10,223评论 8 79
  • 前言: UIKit Dynamics是iOS7.0新增的一组类和方法,可以赋予UIView逼真的行为和特征,从而改...
    Y_小葱阅读 649评论 1 1
  • 概念介绍 UIDynamic从ios7才开始有的,其他2D仿真引擎:BOX2D:C语言框架,免费Chipmunk:...
    我是滕先生阅读 2,252评论 5 23
  • 写了一些不敢写 没良心的话 可那是我的真实想法 怕什么呢 那日记不会给谁看 别说不愿说 写也不愿些 欣喜的是 我慢...
    桔树上阅读 114评论 0 2
  • 1.OpenCL概念 OpenCL是一个为异构平台编写程序的框架,此异构平台可由CPU、GPU或其他类型的处理器组...
    snoopy_zc阅读 33,595评论 2 18