最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

iOS開(kāi)發(fā)之手勢(shì)gesture詳解

 更新時(shí)間:2016年11月23日 10:59:34   作者:ForrestWoo  
本篇文章介紹了iOS開(kāi)發(fā)之手勢(shì)gesture,現(xiàn)在分享給大家,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下。

前言  

在iOS中,你可以使用系統(tǒng)內(nèi)置的手勢(shì)識(shí)別(GestureRecognizer),也可以創(chuàng)建自己的手勢(shì).GestureRecognizer將低級(jí)別的轉(zhuǎn)換為高級(jí)別的執(zhí)行行為,是你綁定到view的對(duì)象,當(dāng)發(fā)生手勢(shì),綁定到的view對(duì)象會(huì)響應(yīng),它確定這個(gè)動(dòng)作是否對(duì)應(yīng)一個(gè)特定的手勢(shì)(swipe,pinch,pan,rotation).如果它能識(shí)別這個(gè)手勢(shì),那么就會(huì)向綁定它的view發(fā)送消息,如下圖

UIKit框架提供了一些預(yù)定義的GestureRecognizer.包含下列手勢(shì)

  •  UITapGestureRecognizer敲擊手勢(shì)(單擊和雙擊)
  •  UIPanGestureRecognizer(拖動(dòng)手勢(shì))
  •  UIPinchGestureRecognizer(縮放手勢(shì))
  •  UISwipeGestureRecognizer(擦碰手勢(shì))
  •  UIRotationGestureRecognizer(旋轉(zhuǎn)手勢(shì))
  •  UILongPressGestureRecognizer(長(zhǎng)按手勢(shì))

如果你想讓你的應(yīng)用程序來(lái)識(shí)別一個(gè)獨(dú)特的手勢(shì),如選擇目錄或糾結(jié)的運(yùn)動(dòng),你可以創(chuàng)建自己的自定義GestureRecognizer,將在下篇介紹

將特定的手勢(shì)和view相關(guān)聯(lián)

每一個(gè)特定的手勢(shì)必須關(guān)聯(lián)到view對(duì)象中才會(huì)有作用,一個(gè)view對(duì)象可以關(guān)聯(lián)多個(gè)不同的特定手勢(shì),但是每一個(gè)特定的手勢(shì)只能與一個(gè)view相關(guān)聯(lián)。當(dāng)用戶觸摸了view,這個(gè)GestureRecognizer就會(huì)接受到消息,它可以響應(yīng)特定的觸摸事件。

與特定view關(guān)聯(lián)

  • 創(chuàng)建GestureRecognizer實(shí)例
  • addGestureRecognizer
  • 實(shí)現(xiàn)處理手勢(shì)的方法

可以使用removeGestureRecognizer: 來(lái)移除手勢(shì)。

_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];
 }
}

手勢(shì)識(shí)別狀態(tài)
Gesture recognizers從一個(gè)狀態(tài)轉(zhuǎn)到另一狀態(tài)(state)。對(duì)于每個(gè)狀態(tài),根據(jù)它們是否符合特定條件來(lái)決定時(shí)候可以移動(dòng)到下一個(gè)狀態(tài)。它們分析多點(diǎn)觸摸。是否識(shí)別失敗。未能識(shí)別手勢(shì)意味著state 轉(zhuǎn)換失敗。UIGestureRecognizerStateFailed。詳見(jiàn)UIGestureRecognizerState枚舉

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添加多個(gè)手勢(shì)

當(dāng)一個(gè)view添加多個(gè)手勢(shì)時(shí),在缺省情況下,沒(méi)有為優(yōu)先執(zhí)行哪個(gè)手勢(shì)做排序,每次發(fā)生不同。不過(guò)你可以覆蓋默認(rèn)的行為(使用類方法、委托方法、和子類化覆蓋這些)

指定一個(gè)Gesture recognizers應(yīng)該在另一個(gè)前捕捉。

requireGestureRecognizerToFail: 這個(gè)方法就是在作為參數(shù)的Gesture recognizer失敗以后接受者才發(fā)生,否則從不會(huì)發(fā)生。

[self.panRecognizer requireGestureRecognizerToFail:self.swipeRecognizer];

允許2個(gè)手勢(shì)同時(shí)操作

gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:

禁止在某一點(diǎn)發(fā)生Gesture recognizers

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
 if ([touch.view isKindOfClass:[UIControl class]])
 {
  return NO;
 }
 
 return YES;
}

指定一個(gè)單向關(guān)系兩個(gè)手勢(shì)識(shí)別器

想控制兩個(gè)識(shí)別器相互作用,但你需要指定一個(gè)單向關(guān)系,您可以重寫或canPreventGestureRecognizer:或canBePreventedByGestureRecognizer:子類方法。return yes。例如,如果你想要一個(gè)旋轉(zhuǎn)的姿態(tài)來(lái)防止捏動(dòng)作,但你不想夾手勢(shì)防止旋轉(zhuǎn)的姿態(tài)。例如,你想一個(gè)旋轉(zhuǎn)手勢(shì)阻止一個(gè)縮放手勢(shì),但你不想一個(gè)縮放手勢(shì)阻止旋轉(zhuǎn)手勢(shì),就加入下面代碼

[rotationGestureRecognizer canPreventGestureRecognizer:pinchGestureRecognizer];

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

邮箱| 玛沁县| 佛冈县| 利津县| 桂阳县| 临武县| 清镇市| 武宣县| 合江县| 调兵山市| 凤台县| 青浦区| 辰溪县| 武穴市| 石嘴山市| 揭西县| 枣阳市| 大田县| 依兰县| 蕉岭县| 西乌珠穆沁旗| 绥宁县| 丰原市| 尼玛县| 奉贤区| 滦南县| 来宾市| 定陶县| 三河市| 额济纳旗| 朝阳县| 大城县| 丁青县| 东辽县| 深州市| 东乡| 安岳县| 剑阁县| 琼海市| 安达市| 家居|