分享一个类似QQ屏保解锁的代码类

2024-06-23 10:58

本文主要是介绍分享一个类似QQ屏保解锁的代码类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

话不多说了,直接上代码:
.h文件
//
//  GestureCodeViewController.h
//  DailyRecord
//
//  Created by sven on 13-6-20.
//  Copyright (c) 2013年 sven. All rights reserved.
//#import <UIKit/UIKit.h>#define LOCK_POINT_TAG      1000 
@interface GestureCodeViewController : UIViewController
{UIImageView *m_imageView;CGPoint m_lineStartPoint;CGPoint m_lineEndPoint;NSMutableArray *m_mutArrButtons;NSMutableArray *m_mutArrSelectedButtons;BOOL m_drawFlag;UIImage *m_pointImage;UIImage *m_selectedImage;
}@property (retain, nonatomic) UIImageView *m_imageView;@property (assign, nonatomic) CGPoint m_lineStartPoint;
@property (assign, nonatomic) CGPoint m_lineEndPoint;@property (retain, nonatomic) NSMutableArray *m_mutArrButtons;
@property (retain, nonatomic) NSMutableArray *m_mutArrSelectedButtons;@property (assign, nonatomic) BOOL m_drawFlag;@property (retain, nonatomic) UIImage *m_pointImage;
@property (retain, nonatomic) UIImage *m_selectedImage;@end
.m文件
//
//  GestureCodeViewController.m
//  DailyRecord
//
//  Created by sven on 13-6-20.
//  Copyright (c) 2013年 sven. All rights reserved.
//#import "GestureCodeViewController.h"@interface GestureCodeViewController ()@end@implementation GestureCodeViewController@synthesize m_imageView;
@synthesize m_lineStartPoint;
@synthesize m_lineEndPoint;
@synthesize m_drawFlag;
@synthesize m_mutArrButtons;
@synthesize m_mutArrSelectedButtons;
@synthesize m_pointImage;
@synthesize m_selectedImage;#pragma mark -life cycle- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];if (self) {// Custom initialization}return self;
}- (void)viewDidLoad
{[super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.view.bounds];imageView.backgroundColor = [UIColor whiteColor];self.m_imageView = imageView;[imageView release];[self.view addSubview:m_imageView];[self createLockPoints];
}- (void)didReceiveMemoryWarning
{[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}- (void)dealloc
{[m_imageView release], m_imageView = nil;[m_mutArrButtons release], m_mutArrButtons = nil;[m_mutArrSelectedButtons release], m_mutArrSelectedButtons = nil;[m_pointImage release], m_pointImage = nil;[m_selectedImage release], m_selectedImage = nil;[super dealloc];
}#pragma mark - Trace Touch Point- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{UITouch *touch = [touches anyObject];if (touch){for (UIButton *btn in self.m_mutArrButtons){CGPoint touchPoint = [touch locationInView:btn];if ([btn pointInside:touchPoint withEvent:nil]){self.m_lineStartPoint = btn.center;self.m_drawFlag = YES;if (!self.m_mutArrSelectedButtons){self.m_mutArrSelectedButtons = [NSMutableArray arrayWithCapacity:9];}[self.m_mutArrSelectedButtons addObject:btn];[btn setImage:self.m_selectedImage forState:UIControlStateNormal];}}}
}- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{UITouch *touch = [touches anyObject];if (touch && self.m_drawFlag){self.m_lineEndPoint = [touch locationInView:self.m_imageView];for (UIButton *btn in self.m_mutArrButtons){CGPoint touchPoint = [touch locationInView:btn];if ([btn pointInside:touchPoint withEvent:nil]){BOOL btnContained = NO;for (UIButton *selectedBtn in self.m_mutArrSelectedButtons){if (btn == selectedBtn){btnContained = YES;break;}}if (!btnContained){[self.m_mutArrSelectedButtons addObject:btn];[btn setImage:self.m_selectedImage forState:UIControlStateNormal];}}}self.m_imageView.image = [self drawUnlockLine];}
}- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{[self outputSelectedButtons];self.m_drawFlag = NO;self.m_imageView.image = nil;self.m_mutArrSelectedButtons = nil;
}- (void)createLockPoints
{self.m_pointImage = [UIImage imageNamed:@"blue_circle"];self.m_selectedImage = [UIImage imageNamed:@"yellow_circle"];float marginTop = 150;float marginLeft = 40;float y;for (int i = 0; i < 3; ++i){y = i * 100;float x;for (int j = 0; j < 3; ++j){x = j * 100;UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];[btn setImage:self.m_pointImage forState:UIControlStateNormal];[btn setImage:self.m_selectedImage forState:UIControlStateHighlighted];btn.frame = (CGRect){x+marginLeft, y+marginTop, self.m_pointImage.size};[self.m_imageView addSubview:btn];btn.userInteractionEnabled = NO;btn.tag = LOCK_POINT_TAG + i * 3 + j;if (!self.m_mutArrButtons) {self.m_mutArrButtons = [NSMutableArray arrayWithCapacity:9];}[self.m_mutArrButtons addObject:btn];}}
}#pragma mark - Draw Line- (UIImage *)drawUnlockLine
{UIImage *image = nil;UIColor *color = [UIColor yellowColor];CGFloat width = 5.0f;CGSize imageContextSize = self.m_imageView.frame.size;UIGraphicsBeginImageContext(imageContextSize);CGContextRef context = UIGraphicsGetCurrentContext();CGContextSetLineWidth(context, width);CGContextSetStrokeColorWithColor(context, [color CGColor]);CGContextMoveToPoint(context, self.m_lineStartPoint.x, self.m_lineStartPoint.y);for (UIButton *selectedBtn in self.m_mutArrSelectedButtons){CGPoint btnCenter = selectedBtn.center;CGContextAddLineToPoint(context, btnCenter.x, btnCenter.y);CGContextMoveToPoint(context, btnCenter.x, btnCenter.y);}CGContextAddLineToPoint(context, self.m_lineEndPoint.x, self.m_lineEndPoint.y);CGContextStrokePath(context);image = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();return image;
}#pragma mark -- (void)outputSelectedButtons
{for (UIButton *btn in self.m_mutArrSelectedButtons){[btn setImage:self.m_pointImage forState:UIControlStateNormal];NSLog(@"Selected-button's tag : %d\n", btn.tag);}}@end

    是不是很好用呢!

这篇关于分享一个类似QQ屏保解锁的代码类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1086962

相关文章

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

代码随想录冲冲冲 Day39 动态规划Part7

198. 打家劫舍 dp数组的意义是在第i位的时候偷的最大钱数是多少 如果nums的size为0 总价值当然就是0 如果nums的size为1 总价值是nums[0] 遍历顺序就是从小到大遍历 之后是递推公式 对于dp[i]的最大价值来说有两种可能 1.偷第i个 那么最大价值就是dp[i-2]+nums[i] 2.不偷第i个 那么价值就是dp[i-1] 之后取这两个的最大值就是d

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

D4代码AC集

贪心问题解决的步骤: (局部贪心能导致全局贪心)    1.确定贪心策略    2.验证贪心策略是否正确 排队接水 #include<bits/stdc++.h>using namespace std;int main(){int w,n,a[32000];cin>>w>>n;for(int i=1;i<=n;i++){cin>>a[i];}sort(a+1,a+n+1);int i=1

java常用面试题-基础知识分享

什么是Java? Java是一种高级编程语言,旨在提供跨平台的解决方案。它是一种面向对象的语言,具有简单、结构化、可移植、可靠、安全等特点。 Java的主要特点是什么? Java的主要特点包括: 简单性:Java的语法相对简单,易于学习和使用。面向对象:Java是一种完全面向对象的语言,支持封装、继承和多态。跨平台性:Java的程序可以在不同的操作系统上运行,称为"Write once,

html css jquery选项卡 代码练习小项目

在学习 html 和 css jquery 结合使用的时候 做好是能尝试做一些简单的小功能,来提高自己的 逻辑能力,熟悉代码的编写语法 下面分享一段代码 使用html css jquery选项卡 代码练习 <div class="box"><dl class="tab"><dd class="active">手机</dd><dd>家电</dd><dd>服装</dd><dd>数码</dd><dd