博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIRotationGestureRecognizer 判斷旋轉方向
阅读量:6582 次
发布时间:2019-06-24

本文共 1139 字,大约阅读时间需要 3 分钟。

hot3.png

////  UIRotationGestureRecognizer.h//  UIKit////  Copyright (c) 2009-2014 Apple Inc. All rights reserved.//#import 
#import 
NS_ASSUME_NONNULL_BEGIN// Begins:  when two touches have moved enough to be considered a rotation// Changes: when a finger moves while two fingers are down// Ends:    when both fingers have liftedNS_CLASS_AVAILABLE_IOS(3_2) __TVOS_PROHIBITED @interface UIRotationGestureRecognizer : UIGestureRecognizer@property (nonatomic)          CGFloat rotation;            // rotation in radians@property (nonatomic,readonly) CGFloat velocity;            // velocity of the pinch in radians/second@endNS_ASSUME_NONNULL_END

You may set the rotation value to an arbitrary value; however, setting the rotation resets the velocity.

The rotation value is a single value that varies over time. It is not the delta value from the last time that the rotation was reported. Apply the rotation value to the state of the view when the gesture is first recognized—do not concatenate the value each time the handler is called.

可以通過rotation與上一次rotation相減的差值進行判斷

转载于:https://my.oschina.net/randy1986/blog/532091

你可能感兴趣的文章
Java知识点总结(反射-反射操作泛型)
查看>>
Vue+webpack+Element 兼容问题总结
查看>>
《软技能》读书笔记(下)
查看>>
textarea文域高度自适应
查看>>
go语言renderer包代码分析
查看>>
【Scala谜题】成员声明的位置
查看>>
git最最最最...常用命令
查看>>
复杂recyclerView封装库
查看>>
使用Redis构建文章投票网站(Java)
查看>>
见微知著 —— Redis 字符串内部结构源码分析
查看>>
Command './js-ant' failed to execute
查看>>
阿里云NFS NAS数据保护实战
查看>>
Spring cloud配置客户端
查看>>
产品研发项目管理软件哪个好?
查看>>
【阿里云北京峰会】一图看懂机器学习PAI如何帮助企业应用智能化升级
查看>>
ansible playbook使用总结
查看>>
Android API中文文档(111) —— MailTo
查看>>
Linux 中如何卸载已安装的软件
查看>>
thinkphp 3.2 增加每页显示条数
查看>>
oracle日常简单数据备份与还原
查看>>