博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
how to use Gesture in Iphone
阅读量:5811 次
发布时间:2019-06-18

本文共 466 字,大约阅读时间需要 1 分钟。

-(void)initswipGesture {

 

    UISwipeGestureRecognizer *recognizer;

    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeForm:)];

    recognizer.direction = UISwipeGestureRecognizerDirectionRight;

    [_loginViewaddGestureRecognizer:recognizer];

    [recognizer release];

}

 

-(void)handleSwipeForm:(UISwipeGestureRecognizer *)recognizer{

    

    [selfcancelButtonPressed:nil];

}

转载于:https://www.cnblogs.com/martin-xiao/archive/2012/09/25/2701028.html

你可能感兴趣的文章
多线程day01
查看>>
MVC中的ActionResult
查看>>
JSON path
查看>>
kaptcha验证码的使用(转)
查看>>
Win8 Metro(C#)数字图像处理--2.43图像马赛克效果算法
查看>>
动画库NineOldAndroids
查看>>
react-native 模仿原生 实现下拉刷新/上拉加载更多(RefreshListView)
查看>>
大数据开发实战:Hadoop数据仓库开发实战
查看>>
Spring Boot 2中对于CORS跨域访问的快速支持
查看>>
MySQL出现Access denied for user ‘root’@’localhost’ (using password:YES)
查看>>
matlab fread
查看>>
通过Roslyn构建自己的C#脚本(更新版)(转)
查看>>
红黑树
查看>>
mybatis08
查看>>
01 awk工具的使用
查看>>
UIImagePickerController拍照与摄像
查看>>
Maven--(一个坑)在settings.xml文件中添加mirrors导致无法新建Maven项目
查看>>
linux日志:syslogd和klogd及syslog
查看>>
Python模块学习笔记— —time与datatime
查看>>
python调用windows api
查看>>