IOS學習之手勢操作

參考文章 http://blog.jobbole.com/65846/

創(chuàng)新互聯(lián)建站服務項目包括從化網站建設、從化網站制作、從化網頁制作以及從化網絡營銷策劃等。多年來,我們專注于互聯(lián)網行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網行業(yè)的解決方案,從化網站推廣取得了明顯的社會效益與經濟效益。目前,我們服務的客戶以成都為中心已經輻射到從化省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!

1. UIGestureRecognizer介紹

UIGestureRecognizer類是個抽象類,下面的子類是具體的手勢,開發(fā)這可以直接使用這些手勢識別。

    UITapGestureRecognizer                // 點擊

    UIPinchGestureRecognizer            // 二指往內或往外撥動,平時經常用到的縮放

    UIRotationGestureRecognizer       // 旋轉

    UISwipeGestureRecognizer           // 滑動,快速移動

    UIPanGestureRecognizer               // 拖移,慢速移動

    UILongPressGestureRecognizer   // 長按

2、使用手勢的步驟

使用手勢很簡單,分為兩步:

(1)創(chuàng)建手勢實例。當創(chuàng)建手勢時,指定一個回調方法,當手勢開始,改變、或結束時,回調方法被調用。

(2)添加到需要識別的View中。每個手勢只對應一個View,當屏幕觸摸在View的邊界內時,如果手勢和預定的一樣,那就會回調方法。

ps:一個手勢只能對應一個View,但是一個View可以有多個手勢。

3、Pan 拖動手勢:

// 新建一個ImageView,然后添加手勢
UIImageView *snakeImageView = [[UIImageView alloc] initWithImage:[UIImage p_w_picpathNamed:@"snake.png"]];  
snakeImageView.frame = CGRectMake(50, 50, 100, 160);  
UIPanGestureRecognizer *panGestureRecognizer = [[UIPanGestureRecognizer alloc]  
                                                initWithTarget:self  
                                                action:@selector(handlePan:)];      
[snakeImageView addGestureRecognizer:panGestureRecognizer];  
[self.view setBackgroundColor:[UIColor whiteColor]];  
[self.view addSubview:snakeImageView];

// 回調方法:
- (void) handlePan:(UIPanGestureRecognizer*) recognizer  {  
    CGPoint translation = [recognizer translationInView:self.view];  
    recognizer.view.center = CGPointMake(recognizer.view.center.x + translation.x,  
                                   recognizer.view.center.y + translation.y);  
    [recognizer setTranslation:CGPointZero inView:self.view];  
}

4、Pinch縮放手勢

UIPinchGestureRecognizer *pinchGestureRecognizer = [[UIPinchGestureRecognizer alloc]  
                                                        initWithTarget:self  
                                                        action:@selector(handlePinch:)];
                                                        
- (void) handlePinch:(UIPinchGestureRecognizer*) recognizer  {  
    recognizer.view.transform = CGAffineTransformScale(recognizer.view.transform, recognizer.scale, recognizer.scale);  
    recognizer.scale = 1;  
}

5、Rotation旋轉手勢

UIRotationGestureRecognizer *rotateRecognizer = [[UIRotationGestureRecognizer alloc]  
                                                 initWithTarget:self  
                                                 action:@selector(handleRotate:)];  
[snakeImageView addGestureRecognizer:rotateRecognizer];

- (void) handleRotate:(UIRotationGestureRecognizer*) recognizer  {  
    recognizer.view.transform = CGAffineTransformRotate(recognizer.view.transform, recognizer.rotation);  
    recognizer.rotation = 0;  
}

6、添加第二個ImagView并添加手勢

記?。阂粋€手勢只能添加到一個View,兩個View當然要有兩個手勢的實例了

- (void)viewDidLoad  {  
    [super viewDidLoad];  
 
    UIImageView *snakeImageView = [[UIImageView alloc] initWithImage:[UIImage p_w_picpathNamed:@"snake.png"]];  
    UIImageView *dragonImageView = [[UIImageView alloc] initWithImage:[UIImage p_w_picpathNamed:@"dragon.png"]];  
    snakeImageView.frame = CGRectMake(120, 120, 100, 160);  
    dragonImageView.frame = CGRectMake(50, 50, 100, 160);  
    [self.view addSubview:snakeImageView];  
    [self.view addSubview:dragonImageView];  
 
    for (UIView *view in self.view.subviews) {  
        UIPanGestureRecognizer *panGestureRecognizer = [[UIPanGestureRecognizer alloc]  
                                                        initWithTarget:self  
                                                        action:@selector(handlePan:)];  
 
        UIPinchGestureRecognizer *pinchGestureRecognizer = [[UIPinchGestureRecognizer alloc]  
                                                            initWithTarget:self  
                                                            action:@selector(handlePinch:)];  
 
        UIRotationGestureRecognizer *rotateRecognizer = [[UIRotationGestureRecognizer alloc]  
                                                         initWithTarget:self  
                                                         action:@selector(handleRotate:)];  
 
        [view addGestureRecognizer:panGestureRecognizer];  
        [view addGestureRecognizer:pinchGestureRecognizer];  
        [view addGestureRecognizer:rotateRecognizer];  
        [view setUserInteractionEnabled:YES];  
    }  
    [self.view setBackgroundColor:[UIColor whiteColor]];       
}

7、拖動(pan手勢)速度(以較快的速度拖放后view有滑行的效果)

如何實現(xiàn)呢?

    1.監(jiān)視手勢是否結束

    2.監(jiān)視觸摸的速度

- (void) handlePan:(UIPanGestureRecognizer*) recognizer  {  
    CGPoint translation = [recognizer translationInView:self.view];  
    recognizer.view.center = CGPointMake(recognizer.view.center.x + translation.x,  
                                       recognizer.view.center.y + translation.y);  
    [recognizer setTranslation:CGPointZero inView:self.view];  
 
    if (recognizer.state == UIGestureRecognizerStateEnded) {  
 
        CGPoint velocity = [recognizer velocityInView:self.view];  
        CGFloat magnitude = sqrtf((velocity.x * velocity.x) + (velocity.y * velocity.y));  
        CGFloat slideMult = magnitude / 200;  
        NSLog(@"magnitude: %f, slideMult: %f", magnitude, slideMult);  
 
        float slideFactor = 0.1 * slideMult; // Increase for more of a slide  
        CGPoint finalPoint = CGPointMake(recognizer.view.center.x + (velocity.x * slideFactor),  
                                         recognizer.view.center.y + (velocity.y * slideFactor));  
        finalPoint.x = MIN(MAX(finalPoint.x, 0), self.view.bounds.size.width);  
        finalPoint.y = MIN(MAX(finalPoint.y, 0), self.view.bounds.size.height);  
 
        [UIView animateWithDuration:slideFactor*2 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{  
            recognizer.view.center = finalPoint;  
        } completion:nil];  
    }

代碼實現(xiàn)解析:

    1.計算速度向量的長度(估計大部分都忘了)這些知識了。

    2.如果速度向量小于200,那就會得到一個小于的小數(shù),那么滑行會很短

    3.基于速度和速度因素計算一個終點

    4.確保終點不會跑出父View的邊界

    5.使用UIView動畫使view滑動到終點

運行后,快速拖動圖像view放開會看到view還會在原來的方向滑行一段路。

8、同時觸發(fā)兩個view的手勢

手勢之間是互斥的,如果你想同時觸發(fā)蛇和龍的view,那么需要實現(xiàn)協(xié)議UIGestureRecognizerDelegate,

并在協(xié)議這個方法里返回YES。

-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {  
    return YES;  
}

把self作為代理設置給手勢:

panGestureRecognizer.delegate = self;  
pinchGestureRecognizer.delegate = self;  
rotateRecognizer.delegate = self;

這樣可以同時拖動或旋轉縮放兩個view了。

9、tap點擊手勢

這里為了方便看到tap的效果,當點擊一下屏幕時,播放一個聲音。

為了播放聲音,我們加入AVFoundation.framework這個框架。

- (AVAudioPlayer *)loadWav:(NSString *)filename {  
    NSURL * url = [[NSBundle mainBundle] URLForResource:filename withExtension:@"wav"];  
    NSError * error;  
    AVAudioPlayer * player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];  
    if (!player) {  
        NSLog(@"Error loading %@: %@", url, error.localizedDescription);  
    } else {  
        [player prepareToPlay];  
    }  
    return player;  
}

我會在最后例子代碼給出完整代碼,添加手勢的步驟和前面一樣的。

#import <UIKit/UIKit.h>  
#import <AVFoundation/AVFoundation.h>  
@interface ViewController : UIViewController<UIGestureRecognizerDelegate>  
@property (strong) AVAudioPlayer * chompPlayer;  
@property (strong) AVAudioPlayer * hehePlayer;  
@end
 
- (void)handleTap:(UITapGestureRecognizer *)recognizer {  
    [self.chompPlayer play];  
}

運行,點一下某個圖,就會播放一個咬東西的聲音。

不過這個點擊播放聲音有點缺陷,就是在慢慢拖動的時候也會播放。這使得兩個手勢重合了。怎么解決呢?使用手勢的:requireGestureRecognizerToFail方法。

10、手勢的依賴性

在viewDidLoad的循環(huán)里添加這段代碼:

[tapRecognizer requireGestureRecognizerToFail:panGestureRecognizer];

意思就是,當如果pan手勢失敗,就是沒發(fā)生拖動,才會出發(fā)tap手勢。這樣如果你有輕微的拖動,那就是pan手勢發(fā)生了。tap的聲音就不會發(fā)出來了。

11、自定義手勢

自定義手勢繼承:UIGestureRecognizer,實現(xiàn)下面的方法:

– touchesBegan:withEvent:  
– touchesMoved:withEvent:  
– touchesEnded:withEvent:  
- touchesCancelled:withEvent:

 

新建一個類,繼承UIGestureRecognizer,代碼如下:

.h文件

#import <UIKit/UIKit.h>  
typedef enum {  
    DirectionUnknown = 0,  
    DirectionLeft,  
    DirectionRight  
} Direction;  
 
@interface HappyGestureRecognizer : UIGestureRecognizer  
@property (assign) int tickleCount;  
@property (assign) CGPoint curTickleStart;  
@property (assign) Direction lastDirection;  
 
@end

.m文件

#import "HappyGestureRecognizer.h"  
#import <UIKit/UIGestureRecognizerSubclass.h>  
#define REQUIRED_TICKLES        2  
#define MOVE_AMT_PER_TICKLE     25  
 
@implementation HappyGestureRecognizer  
 
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {  
    UITouch * touch = [touches anyObject];  
    self.curTickleStart = [touch locationInView:self.view];  
}  
 
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    // Make sure we've moved a minimum amount since curTickleStart  
    UITouch * touch = [touches anyObject];  
    CGPoint ticklePoint = [touch locationInView:self.view];  
    CGFloat moveAmt = ticklePoint.x - self.curTickleStart.x;  
    Direction curDirection;  
    if (moveAmt < 0) {  
        curDirection = DirectionLeft;  
    } else {  
        curDirection = DirectionRight;  
    }  
    if (ABS(moveAmt) < MOVE_AMT_PER_TICKLE) return;  
 
    // 確認方向改變了  
    if (self.lastDirection == DirectionUnknown ||  
        (self.lastDirection == DirectionLeft && curDirection == DirectionRight) ||  
        (self.lastDirection == DirectionRight && curDirection == DirectionLeft)) {  
 
        // 撓癢次數(shù)  
        self.tickleCount++;  
        self.curTickleStart = ticklePoint;  
        self.lastDirection = curDirection;  
 
        // 一旦撓癢次數(shù)超過指定數(shù),設置手勢為結束狀態(tài)  
        // 這樣回調函數(shù)會被調用。  
        if (self.state == UIGestureRecognizerStatePossible && self.tickleCount > REQUIRED_TICKLES) {  
            [self setState:UIGestureRecognizerStateEnded];  
        }  
    }  
 
}  
 
- (void)reset {  
    self.tickleCount = 0;  
    self.curTickleStart = CGPointZero;  
    self.lastDirection = DirectionUnknown;  
    if (self.state == UIGestureRecognizerStatePossible) {  
        [self setState:UIGestureRecognizerStateFailed];  
    }  
}  
 
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event  
{  
    [self reset];  
}  
 
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event  
{  
    [self reset];  
}  
 
@end

調用自定義手勢和上面一樣,回到這樣寫:

- (void)handleHappy:(HappyGestureRecognizer *)recognizer{  
    [self.hehePlayer play];  
}

手勢成功后播放呵呵笑的聲音。

在真機上運行,按住某個view,快速左右拖動,就會發(fā)出笑的聲音了。

代碼解析:

先獲取起始坐標:curTickleStart

通過和ticklePoint的x值對比,得出當前的放下是向左還是向右。再算出移動的x的值是否比MOVE_AMT_PER_TICKLE距離大,如果太則返回。

再判斷是否有三次是不同方向的動作,如果是則手勢結束,回調。

網頁名稱:IOS學習之手勢操作
網址分享:http://www.muchs.cn/article38/jioppp.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供標簽優(yōu)化、企業(yè)建站外貿建站、網站建設定制網站、用戶體驗

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

h5響應式網站建設