- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS开发之手势gesture详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
前言 。
在ios中,你可以使用系统内置的手势识别(gesturerecognizer),也可以创建自己的手势.gesturerecognizer将低级别的转换为高级别的执行行为,是你绑定到view的对象,当发生手势,绑定到的view对象会响应,它确定这个动作是否对应一个特定的手势(swipe,pinch,pan,rotation).如果它能识别这个手势,那么就会向绑定它的view发送消息,如下图 。
uikit框架提供了一些预定义的gesturerecognizer.包含下列手势 。
如果你想让你的应用程序来识别一个独特的手势,如选择目录或纠结的运动,你可以创建自己的自定义gesturerecognizer,将在下篇介绍 。
将特定的手势和view相关联 。
每一个特定的手势必须关联到view对象中才会有作用,一个view对象可以关联多个不同的特定手势,但是每一个特定的手势只能与一个view相关联。当用户触摸了view,这个gesturerecognizer就会接受到消息,它可以响应特定的触摸事件.
与特定view关联 。
可以使用removegesturerecognizer: 来移除手势.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
_pangesturerecognizer = [[uipangesturerecognizer alloc] initwithtarget:self action:@selector(handlerpangesture:)];
_pangesturerecognizer.delegate = self;
_pangesturerecognizer.maximumnumberoftouches = 2;
_pangesturerecognizer.minimumnumberoftouches = 2;
[self.view addgesturerecognizer:_pangesturerecognizer];
- (
void
)handlerpangesture:(uipangesturerecognizer *)recognizer
{
if
((recognizer.state == uigesturerecognizerstatebegan) ||
(recognizer.state == uigesturerecognizerstatechanged))
{
cgpoint offset = [recognizer translationinview:self.view];
cgrect frame = self.rightviewcontroller.view.frame;
frame.origin.x += offset.x;
if
(frame.origin.x >= 0 && frame.origin.x <= kscreenwidth)
{
self.rightviewcontroller.view.frame = frame;
}
[recognizer settranslation:cgpointzero inview:self.view];
}
else
if
(recognizer.state == uigesturerecognizerstateended)
{
bool
isvisible = self.rightviewcontroller.view.frame.origin.x < kscreenwidth / 2;
[self showrightview:isvisible];
}
}
|
手势识别状态 gesture recognizers从一个状态转到另一状态(state)。对于每个状态,根据它们是否符合特定条件来决定时候可以移动到下一个状态。它们分析多点触摸。是否识别失败。未能识别手势意味着state 转换失败。uigesturerecognizerstatefailed。详见uigesturerecognizerstate枚举 。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
typedef
ns_enum(nsinteger, uigesturerecognizerstate) {
uigesturerecognizerstatepossible,
// the recognizer has not yet recognized its gesture, but may be evaluating touch events. this is the default state
uigesturerecognizerstatebegan,
// the recognizer has received touches recognized as the gesture. the action method will be called at the next turn of the run loop
uigesturerecognizerstatechanged,
// the recognizer has received touches recognized as a change to the gesture. the action method will be called at the next turn of the run loop
uigesturerecognizerstateended,
// the recognizer has received touches recognized as the end of the gesture. the action method will be called at the next turn of the run loop and the recognizer will be reset to uigesturerecognizerstatepossible
uigesturerecognizerstatecancelled,
// the recognizer has received touches resulting in the cancellation of the gesture. the action method will be called at the next turn of the run loop. the recognizer will be reset to uigesturerecognizerstatepossible
uigesturerecognizerstatefailed,
// the recognizer has received a touch sequence that can not be recognized as the gesture. the action method will not be called and the recognizer will be reset to uigesturerecognizerstatepossible
// discrete gestures – gesture recognizers that recognize a discrete event but do not report changes (for example, a tap) do not transition through the began and changed states and can not fail or be cancelled
uigesturerecognizerstaterecognized = uigesturerecognizerstateended
// the recognizer has received touches recognized as the gesture. the action method will be called at the next turn of the run loop and the recognizer will be reset to uigesturerecognizerstatepossible
};
|
为view添加多个手势 。
当一个view添加多个手势时,在缺省情况下,没有为优先执行哪个手势做排序,每次发生不同。不过你可以覆盖默认的行为(使用类方法、委托方法、和子类化覆盖这些) 。
指定一个gesture recognizers应该在另一个前捕捉.
requiregesturerecognizertofail: 这个方法就是在作为参数的gesture recognizer失败以后接受者才发生,否则从不会发生.
1
|
[self.panrecognizer requiregesturerecognizertofail:self.swiperecognizer];
|
允许2个手势同时操作 。
1
|
gesturerecognizer:shouldrecognizesimultaneouslywithgesturerecognizer:
|
禁止在某一点发生gesture recognizers 。
1
2
3
4
5
6
7
8
9
|
- (
bool
)gesturerecognizer:(uigesturerecognizer *)gesturerecognizer shouldreceivetouch:(uitouch *)touch
{
if
([touch.view iskindofclass:[uicontrol
class
]])
{
return
no;
}
return
yes;
}
|
指定一个单向关系两个手势识别器 。
想控制两个识别器相互作用,但你需要指定一个单向关系,您可以重写或canpreventgesturerecognizer:或canbepreventedbygesturerecognizer:子类方法。return yes。例如,如果你想要一个旋转的姿态来防止捏动作,但你不想夹手势防止旋转的姿态。例如,你想一个旋转手势阻止一个缩放手势,但你不想一个缩放手势阻止旋转手势,就加入下面代码 。
1
|
[rotationgesturerecognizer canpreventgesturerecognizer:pinchgesturerecognizer];
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://www.cnblogs.com/salam/archive/2013/04/30/iOS_gesture.html 。
最后此篇关于iOS开发之手势gesture详解的文章就讲到这里了,如果你想了解更多关于iOS开发之手势gesture详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我需要一些说明。我可以直接写入 /dev/port 以直接访问并行端口并且它工作正常(我可以打开插入端口连接器的 LED)。但是,我想我可以用 /dev/mem 做同样的事情? (http://tld
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我使用 Visual C++ 和 Win32 API 学习了 Windows 编程。如今,似乎大多数应用程序都是使用 C# 在 .NET 中开发的。我知道大多数时候 native 代码和托管代码之间没
请耐心等待。我正在制作一个 java 控制台,类似于此处找到的 DragonConsole https://code.google.com/p/dragonconsole/ 。一切都按计划进行,但我想
关闭。这个问题需要更多 focused .它目前不接受答案。 想要改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭5年前。 Improve this que
Django 的开发服务器表现得很奇怪。访问它的浏览器在加载时卡住,任何退出它的尝试都不起作用。当我点击 control c看似相当,但实际上仍在运行。让它退出的唯一方法是重新启动我的电脑,这很令人沮
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
是否可以根据其 website 上提供的规范开发 AUTOSAR BSW 堆栈(例如用于 CAN 通信)?不购买任何昂贵的供应商工具?可以遵循哪些步骤?我被要求探索这种可能性。 最佳答案 是和否。工具
有人知道如何用音频文件的内容覆盖 iPhone 麦克风吗? 想象一个场景,您正在通话,并且想要播放一些简短的音频让其他人听到。 因此,有必要将麦克风(硬件)置于保持状态,并使用委托(delegate)
我遇到了这个问题,我的应用程序出现 EXC_BAD_ACCESS 错误并卡住/停止。我使用模拟器的“向左旋转”和“向右旋转”选项来模拟方向变化行为。导致此错误的可能原因有哪些?由于我没有获得有关错误的
我有超过 1 台 Mac,我想在所有这些 Mac 上进行开发。我知道我需要在每台机器上同步我的手机,但这是我遇到的最小的问题。看起来我无法在手机上运行应用程序,除了在其中之一上开发的应用程序。 是否有
在手机上测试时,我的应用程序在特定点崩溃。控制台显示此消息 Tue Jan 27 15:47:14 unknown SpringBoard[22] : Application com.myprof.
我有一个案例,我从服务器获取信息。我的应用程序有一个选项卡栏和导航按钮。我希望应用程序显示进度指示器并禁用所有其他控件,以便用户在从服务器提取数据时无法跳转。我怎样才能实现这个目标? 我想到的一种方法
有时,当我尝试“构建”/编译下载的源代码时,我会收到以下警告: ld: warning: directory '/Volumes/Skiiing2/CD/ViewBased/Unknown Path/
我无法在 Apple 文档中找到关于开发和分发配置之间差异的明确解释。我目前正在使用开发配置在我的 iPhone 上进行开发和测试。我打算将该应用程序分发到我的 Beta 测试中,我想知道: 我需要使
我在使用 SharePoint 时遇到的最大挑战之一是它不能很好地适应典型的项目环境,其中至少包含开发和生产环境。我遇到的最多的问题是内容和列表是如此紧密地耦合在一起,以至于如果不在生产环境中执行内容
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
首先,我告诉你-我是编码新手 我正在使用vs代码来学习c++,它不会产生像dev c++或codeblocks这样的调试器。我看了一些视频,其中我们必须编辑json文件,这对于初学者来说非常复杂。有人
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
我开发了一个 Ionic 应用程序(iOS 和 Android 的混合)。我有 Xcode 8.3.3 并购买了一年的 Apple Developer Program 订阅。 我不想测试我的应用并将其
我是一名优秀的程序员,十分优秀!