手勢(shì)解鎖

下班回家喷鸽,隨便寫(xiě)寫(xiě)乐设,寫(xiě)了個(gè)手勢(shì)解鎖讼庇,很多app都有。自己封裝了一個(gè)近尚,手勢(shì)解鎖視圖蠕啄。代碼如下:
頭文件

#import <UIKit/UIKit.h>

typedef void(^JGestureLockViewRightResultBlock)();

@interface JGestureLockView : UIView

@property(nonatomic,copy)NSString *rightSecret;
@property(nonatomic,copy)JGestureLockViewRightResultBlock resultBlock;

@end

源文件:

//
//  JGestureLockView.m
//  GestureLockDemo
//
//  Created by jiangtd on 16/6/12.
//  Copyright ? 2016年 jiangtd. All rights reserved.
//

#import "JGestureLockView.h"

#define SelectedImgName          @"1.jpg"
#define NormalImgName            @"2.jpg"
#define WrongSelectedImgName     @"33.jpg"
#define WrongLineImgName         @"5"
#define RightLineImgName         @"6.jpg"
#define LockBtnSize              70
#define GestureCirle             20
#define LineWith                 20

typedef NS_ENUM(NSInteger,JGestureLockViewState){
    JGestureLockViewStateRight,
    JGestureLockViewStateWrong,
    JGestureLockViewStateWaitingJudge,
    JGestureLockViewStateNone,
};

@interface JGestureLockView ()

@property(nonatomic,strong)NSMutableArray *viewArr;
@property(nonatomic,strong)NSMutableArray *locationArr;
@property(nonatomic,strong)NSMutableArray *selectedArr;
@property(nonatomic,assign)JGestureLockViewState state;
@property(nonatomic,assign)CGPoint gestureLocation;

@property(nonatomic,strong)NSTimer *timer;

@end

@implementation JGestureLockView

-(id)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self setUpUI];
    }
    return self;
}

-(void)setUpUI{
    
    _state = JGestureLockViewStateNone;
    
    for (int i = 0; i < 9; i++) {
        UIImageView *imgView = [[UIImageView alloc] init];
        [self.viewArr addObject:imgView];
        imgView.image = [UIImage imageNamed:NormalImgName];
        imgView.frame = CGRectMake(0, 0, LockBtnSize, LockBtnSize);
        imgView.layer.masksToBounds = YES;
        imgView.layer.cornerRadius = LockBtnSize / 2;
        [self addSubview:imgView];
    }
}

-(void)layoutSubviews
{
    [self calculateViewLocation];
    for (int i = 0; i < 9; i++) {
        if (self.viewArr.count - 1 >= i && self.locationArr.count - 1 >= i) {
            UIImageView *imgView = self.viewArr[i];
            CGPoint center = [self.locationArr[i] CGPointValue];
            imgView.center = center;
        }
    }
    
}

-(void)calculateViewLocation{
    CGFloat marignWidth = 25;
    CGFloat lineWidth = (self.frame.size.width - marignWidth * 2 - 3 * LockBtnSize) / 2;
    
    CGFloat beginX = marignWidth + LockBtnSize / 2;
    CGFloat beginY = marignWidth + LockBtnSize / 2;
    for (int i = 0; i< 9; i++) {
        CGFloat x = beginX + (i % 3) * LockBtnSize + (i % 3) * lineWidth;
        CGFloat y = beginY + (i / 3) * LockBtnSize + (i / 3) *lineWidth;
        CGPoint viewCenterPoint = CGPointMake(x, y);
        [self.locationArr addObject:[NSValue valueWithCGPoint:viewCenterPoint]];
        
    }
}

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    _state = JGestureLockViewStateNone;
    //清除之前選擇的結(jié)果
    [self.selectedArr removeAllObjects];
}

-(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self];
    _gestureLocation = point;
    
    //遍歷各點(diǎn),檢測(cè)是否落在點(diǎn)的周邊
    for (int i = 0;i< 9; i++) {
        NSValue *pointValue = self.locationArr[i];
        CGPoint center = [pointValue CGPointValue];
        if ([self isInCirleWithCenter:center point:point] && ![self hasSelectedWithIndex:i]) {
            [self.selectedArr addObject:@(i)];
           
            if (_state == JGestureLockViewStateNone) {
                _state = JGestureLockViewStateWaitingJudge;
            }
        }
    }
    [self setNeedsDisplay];
}


-(void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    //拼湊選擇的答案
    NSMutableString *selectResult = [NSMutableString string];
    for (NSNumber *selectNum in self.selectedArr) {
        [selectResult appendFormat:@"%ld",[selectNum integerValue]];
    }
    if ([selectResult isEqualToString:_rightSecret]) {
        _state = JGestureLockViewStateRight;
    }
    else{
        _state = JGestureLockViewStateWrong;
    }
    NSLog(@"selectResult:%@",selectResult);
    //如果手勢(shì)正確 block通知解鎖成功
    if (_state == JGestureLockViewStateRight && _resultBlock) {
        _resultBlock();
    }
    if (_state == JGestureLockViewStateWrong) {
        _timer = [NSTimer scheduledTimerWithTimeInterval:.5 target:self selector:@selector(timerAction:) userInfo:nil repeats:NO];
        [[NSRunLoop currentRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
    }
    [self setNeedsDisplay];
}

//從俯視圖移除時(shí)戈锻,再次確認(rèn)清除定時(shí)器
-(void)willMoveToSuperview:(UIView *)newSuperview
{
    if (!newSuperview) {
        [self stopTimer];
    }
}

-(void)stopTimer{
    if (_timer) {
        [_timer invalidate];
        _timer = nil;
    }
}

-(void)dealloc
{
    NSLog(@"dealloc");
}

-(void)timerAction:(id)sender{
    [self stopTimer];
    [self.selectedArr removeAllObjects];
    [self setNeedsDisplay];
}

-(void)drawRect:(CGRect)rect{
    
    for (int i = 0; i< 9; i++) {
        UIImageView *imgView = self.viewArr[i];
        NSString *imgName = @"";
        if ([self hasSelectedWithIndex:i]) {
            imgName = SelectedImgName;
        }
        else{
            imgName = NormalImgName;
        }
        imgView.image = [UIImage imageNamed:imgName];
    }
    
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetLineCap(context, kCGLineCapRound);
    CGContextSetLineJoin(context, kCGLineJoinRound);
    CGContextSetLineWidth(context, LineWith);
    UIColor *lineColor = nil;
    
    if (_state == JGestureLockViewStateWrong) {
        lineColor = [UIColor colorWithPatternImage:[UIImage imageNamed:WrongLineImgName]];
    }
    else
    {
        lineColor = [UIColor colorWithPatternImage:[UIImage imageNamed:RightLineImgName]];
    }
    CGContextSetStrokeColorWithColor(context, lineColor.CGColor);
    UIBezierPath *bezierPath = [UIBezierPath bezierPath];
    
    if ([self.selectedArr count] > 0) {
        NSInteger beginIndex = [self.selectedArr[0] integerValue];
        CGPoint point = [self.locationArr[beginIndex] CGPointValue];
        [bezierPath moveToPoint:point];
        
        for (int i = 1; i< self.selectedArr.count; i++) {
            
            NSInteger beginIndex = [self.selectedArr[i] integerValue];
            CGPoint point = [self.locationArr[beginIndex] CGPointValue];
            [bezierPath addLineToPoint:point];
        }
        if (_state != JGestureLockViewStateRight || _state != JGestureLockViewStateWrong) {
            [bezierPath addLineToPoint:_gestureLocation];
        }
        
        CGContextAddPath(context, bezierPath.CGPath);
    }
    CGContextStrokePath(context);
}

-(BOOL)hasSelectedWithIndex:(NSInteger)index{
    for (NSNumber *num in self.selectedArr) {
        if ([num integerValue] == index) {
            return YES;
        }
    }
    return NO;
}

-(BOOL)isInCirleWithCenter:(CGPoint)center point:(CGPoint)point{
    CGRect rect = CGRectMake(center.x - GestureCirle, center.y - GestureCirle, GestureCirle * 2, GestureCirle * 2);
    return CGRectContainsPoint(rect, point);
}


#pragma mark =================GetMethod=================

-(NSMutableArray*)viewArr
{
    if (!_viewArr) {
        _viewArr = [NSMutableArray array];
    }
    return _viewArr;
}

-(NSMutableArray*)locationArr
{
    if (!_locationArr) {
        _locationArr = [NSMutableArray array];
    }
    return _locationArr;
}

-(NSMutableArray*)selectedArr{
    if (!_selectedArr) {
        _selectedArr = [NSMutableArray array];
    }
    return _selectedArr;
}

@end

使用:

-(void)setUpUI{
    
    __weak typeof(self) weakSelf = self;
    
    JGestureLockView *gestureView = [[JGestureLockView alloc] init];
    gestureView.backgroundColor = [UIColor blackColor];
    gestureView.alpha = 0.6;
    gestureView.rightSecret = @"01235";
    gestureView.tag = 1;
    gestureView.resultBlock = ^(){
        [weakSelf gestureSecceed];
    };
    [self.view addSubview:gestureView];
    gestureView.frame = CGRectMake(0, 64, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.width);
}

代碼如上歼跟,效果如下:


gesture.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市格遭,隨后出現(xiàn)的幾起案子嘹承,更是在濱河造成了極大的恐慌,老刑警劉巖如庭,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件叹卷,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡坪它,警方通過(guò)查閱死者的電腦和手機(jī)骤竹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)往毡,“玉大人蒙揣,你說(shuō)我怎么就攤上這事】t!?“怎么了懒震?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)嗤详。 經(jīng)常有香客問(wèn)我个扰,道長(zhǎng),這世上最難降的妖魔是什么葱色? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任递宅,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘办龄。我一直安慰自己烘绽,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布俐填。 她就那樣靜靜地躺著安接,像睡著了一般。 火紅的嫁衣襯著肌膚如雪英融。 梳的紋絲不亂的頭發(fā)上赫段,一...
    開(kāi)封第一講書(shū)人閱讀 48,970評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音矢赁,去河邊找鬼糯笙。 笑死,一個(gè)胖子當(dāng)著我的面吹牛撩银,可吹牛的內(nèi)容都是我干的给涕。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼额获,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼够庙!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起抄邀,我...
    開(kāi)封第一講書(shū)人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤耘眨,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后境肾,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體剔难,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年奥喻,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了偶宫。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡环鲤,死狀恐怖纯趋,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情冷离,我是刑警寧澤吵冒,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站西剥,受9級(jí)特大地震影響痹栖,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蔫耽,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一结耀、第九天 我趴在偏房一處隱蔽的房頂上張望留夜。 院中可真熱鬧匙铡,春花似錦图甜、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至钦讳,卻和暖如春矿瘦,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背愿卒。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來(lái)泰國(guó)打工缚去, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人琼开。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓易结,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親柜候。 傳聞我的和親對(duì)象是個(gè)殘疾皇子搞动,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容