`

UISwipeGestureRecognizer ---手指动作

阅读更多

tap是指轻触手势。类似鼠标操作的点击。从iOS 3.2版本开始支持完善的手势api:

  • tap:轻触
  • long press:在一点上长按
  • pinch:两个指头捏或者放的操作
  • pan:手指的拖动
  • swipe:手指在屏幕上很快的滑动
  • rotation:手指反向操作

这为开发者编写手势识别操作,提供了很大的方便,想想之前用android写手势滑动的代码(编写android简单的手势切换视图示例),尤其感到幸福。

这里写一个简单的tap操作。在下面视图的蓝色视图内增加对tap的识别:

image

 

当用手指tap蓝色视图的时候,打印日志输出:

image

代码很简单,首先要声明tap的recognizer:

UITapGestureRecognizer *recognizer=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
[infoView addGestureRecognizer:recognizer];
[recognizer release];

在这里:

  • initWithTarget:self,要引用到Controller,因为一般这部分代码写在controller中,用self;
  • action:@selector(handleTapFrom:),赋值一个方法名,用于当手势事件发生后的回调;
  • [infoView addGestureRecognizer:recognizer],为view注册这个手势识别对象,这样当手指在该视图区域内,可引发手势,之外则不会引发

对应的回调方法:

-(void)handleTapFrom:(UITapGestureRecognizer *)recognizer{
    NSLog(@">>>tap it");
}

controller相关方法完整的代码(包含了一些与本文无关的视图构建代码):

// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
    //去掉最顶端的状态拦
    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation: UIStatusBarAnimationSlide];
   
    UIImage *image=[UIImage imageNamed:@"3.jpg"];
   
    //创建背景视图
    self.view=[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    UIImageView *backgroudView=[[UIImageView alloc] initWithImage:image];
    [self.view addSubview:backgroudView];
   
    /*
    UIToolbar *toolBar=[[UIToolbar alloc] initWithFrame:CGRectMake(0, 1024-70, 768, 70)];
    toolBar.alpha=0.8;
    toolBar.tintColor = [UIColor colorWithRed:.3 green:.5 blue:.6 alpha:.1];
   
    NSArray *items=[NSArray arrayWithObjects:[[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleDone target:self action:nil],nil];
    toolBar.items=items;
    [self.view addSubview:toolBar];
    */
   
    UIView *bottomView=[[UIView alloc]  initWithFrame:CGRectMake(0, 1024-70, 768, 70)];
    bottomView.backgroundColor=[UIColor grayColor];
    bottomView.alpha=0.8;
   
    //UIButton *backButton=[[UIButton alloc] initWithFrame:CGRectMake(10, 10, 100, 40)];
    UIButton *backButton=[UIButton buttonWithType: UIButtonTypeRoundedRect];
    [backButton setTitle:@"ok" forState:UIControlStateNormal];
    backButton.frame=CGRectMake(10, 15, 100, 40);
   
    [bottomView addSubview:backButton];
   
    [self.view addSubview:bottomView];
   
    UIView *infoView=[[UIView alloc] initWithFrame:CGRectMake(200, 700, 768-400, 70)];
    infoView.backgroundColor=[UIColor blueColor];
    infoView.alpha=0.6;
    infoView.layer.cornerRadius=6;
    infoView.layer.masksToBounds=YES;
    [self.view addSubview:infoView];
   
    UITapGestureRecognizer *recognizer=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
    [infoView addGestureRecognizer:recognizer];
    [recognizer release];
}

-(void)handleTapFrom:(UITapGestureRecognizer *)recognizer{
    NSLog(@">>>tap it");
}

 

 

 

 

翻页效果,类似下面的样子:

imageimage

在电子书应用中会很常见。这里需要两个要点:

  • 翻页动画
  • 手势上下轻扫(swipe)的处理

 

先说一下轻扫(swipe)的实现,可以参考编写简单的手势示例:Tap了解手势种类。

在viewDidLoad方法中注册了对上、下、左、右四个方向轻松的处理方法:

- (void)viewDidLoad {
   
    UISwipeGestureRecognizer *recognizer;
   
    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
    [recognizer setDirection:(UISwipeGestureRecognizerDirectionRight)];
    [[self view] addGestureRecognizer:recognizer];
    [recognizer release];
   
    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
    [recognizer setDirection:(UISwipeGestureRecognizerDirectionUp)];
    [[self view] addGestureRecognizer:recognizer];
    [recognizer release];
   
    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
    [recognizer setDirection:(UISwipeGestureRecognizerDirectionDown)];
    [[self view] addGestureRecognizer:recognizer];
    [recognizer release];
   
    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
    [recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];
    [[self view] addGestureRecognizer:recognizer];
    [recognizer release];
   
   
    [super viewDidLoad];

 

可以看到,都是同一个方法,handleSwipeFrom。

在该方法中,再识别具体是哪个方向的轻扫手势,比如判断是向下的轻扫:

-(void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer {
    NSLog(@"Swipe received.");
   
    if (recognizer.direction==UISwipeGestureRecognizerDirectionDown) {
        NSLog(@"swipe down");

判断是向上的轻扫:

if (recognizer.direction==UISwipeGestureRecognizerDirectionUp) {
    NSLog(@"swipe up");

有关动画的处理,比如向下(往回)翻页,类似这样:

[UIView beginAnimations:@"animationID" context:nil];
[UIView setAnimationDuration:0.7f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];

[currentView removeFromSuperview];
[self.view addSubview:contentView];

[UIView commitAnimations];

向上(向前)翻页,只需改为:

[UIView beginAnimations:@"animationID" context:nil];
[UIView setAnimationDuration:0.7f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];

[currentView removeFromSuperview];
[self.view addSubview:contentView];

[UIView commitAnimations];

如果是电子书,还需要考虑一个问题,就是有多个页面(图形),比如50页。那么需要有一个数据结构来保存这些页面的图片路径:

  • objc数据结构,比如数组
  • sqlite数据库表

这样,写一套翻页代码和加载什么图形之间就可以解耦。

本文示例使用的是数组,类似这样:

pages=[[NSArray alloc] initWithObjects:@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg",@"5.jpg",@"6.jpg",
                 nil];

图片保存在resources下。

为了能让上页下页翻页的时候找到关联的页面,采用了如下机制:

  • 将图片封装为UIImageView显示
  • 可以为UIImageView设置一个tag值,值为数组下标+1
  • 这样,上级view有方法能根据tag查询到UIImageView,比如:UIView *currentView=[self.view viewWithTag:currentTag];
  • 设置一个成员变量currentTag保存当前的tag值

比如这样,当应用加载的时候显示第一页:

    currentTag=1;
   
    NSString *path = [[NSBundle mainBundle] pathForResource:@"pageflip1" ofType:@"mp3"];
    player=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
   
    //[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation: UIStatusBarAnimationSlide];
    UIImageView *contentView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; 
    [contentView setImage:[UIImage imageNamed:[pages objectAtIndex:(currentTag-1)]]]; 
    [contentView setUserInteractionEnabled:YES];
    contentView.tag=currentTag;

在翻页时的处理:

if (currentTag<[pages count]) {
    UIView *currentView=[self.view viewWithTag:currentTag];
    currentTag++;
   
    UIImageView *contentView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    [contentView setImage:[UIImage imageNamed:[pages objectAtIndex:(currentTag-1)]]]; 
    [contentView setUserInteractionEnabled:YES];
    contentView.tag=currentTag;
   
    [UIView beginAnimations:@"animationID" context:nil];
    [UIView setAnimationDuration:0.7f];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
    [UIView setAnimationRepeatAutoreverses:NO];
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
   
    [currentView removeFromSuperview];
    [self.view addSubview:contentView];
   
    [UIView commitAnimations];

分享到:
评论

相关推荐

    IOS应用源码Demo-可以用手指左右滑动切换视图的效果demo-毕设学习.zip

    这个压缩包文件“IOS应用源码Demo-可以用手指左右滑动切换视图的效果demo-毕设学习.zip”包含了iOS应用开发中的一个常见功能——通过手势左右滑动来切换视图的示例代码。这种效果在许多移动应用中都可以看到,如社交...

    IOS应用源码——xemus-cocos2d-GestureRecognizers-c87d379.rar

    2. **滑动手势(Swipe)**:`UISwipeGestureRecognizer`用于识别快速的滑动动作,如左滑、右滑、上滑和下滑。开发者需要根据滑动的方向来判断用户的意图。 3. **长按手势(Long Press)**:`...

    ios-LZG_Gesture.zip

    - `UIPinchGestureRecognizer` 捕捉到用户手指的捏合和张开动作,常用于缩放图片、地图等。 5. **旋转手势(Rotation Gesture)**: - `UIRotationGestureRecognizer` 监测手指旋转的动作,主要用于图像的旋转...

    ios-简单手势滑动.zip

    苹果提供了多种内置手势识别器(Gesture Recognizers),如`UISwipeGestureRecognizer`、`UIPanGestureRecognizer`、`UITapGestureRecognizer`等,它们可以帮助我们轻松地识别和处理用户的触摸动作。 1. **...

    UIGestureRecognizer手势

    - **捏合(PinchGestureRecognizer)**:识别两个手指捏合或分开的动作,常用于缩放操作。 - **拖拽(DragGestureRecognizer)**:追踪手指在屏幕上移动,常用于拖放功能。 - **屏幕边缘滑动...

    ios各种手势使用集合总结,适合ios新手

    - **UIPinchGestureRecognizer**:检测用户的手指捏合或张开动作,常用于缩放图片、地图等。 4. **旋转(Rotation Gestures)** - **UIRotationGestureRecognizer**:响应手指旋转手势,用于旋转对象,如图片或3D...

    ios-触摸手势 - demo.zip

    旋转手势用于识别用户旋转手指的动作,常用于调整图像或对象的角度。`UIRotationGestureRecognizer`类用于识别旋转,通过监听手势的旋转角度变化,可以改变相应元素的旋转角度。 5. **捏合(Pinch Gesture)** ...

    IOS应用源码——可以用手指左右滑动切换视图的效果demo.zip

    1. **手势识别(Gesture Recognition)**:iOS SDK提供了多种手势识别类,如`UISwipeGestureRecognizer`,用于识别用户的手势动作,如左右滑动。开发者可以添加这些手势识别器到视图上,当用户执行特定手势时,相应...

    ios源码之用手指划过列表会有“撕开”的效果再次划过则复原SideSwipeTableView.rar

    UISwipeGestureRecognizer监听快速滑动的动作,而UIPanGestureRecognizer则可以跟踪更复杂的滑动手势,包括连续的拖动和释放。在这个效果中,UIPanGestureRecognizer可能更合适,因为它允许我们精确地控制滑动的距离...

    GestureRcognizer

    - `UIRotationGestureRecognizer`识别两个手指旋转的运动,通常用于旋转图像或其他可旋转的对象。手势识别器会提供旋转角度的变化,开发者可以据此调整对象的角度。 5. **长按手势(Long Press Gesture)**: - `...

    高仿QQ联系人列表侧滑删除菜单

    - **滑动手势识别**:用户在屏幕上向左或向右滑动一个列表项时,系统检测到这种手势并触发相应的动作。这需要对触摸事件进行监听和解析。 - **视图动画**:在滑动过程中,显示删除按钮或其他操作选项。这通常通过...

    Xamarin.forms Gesture问题

    而手势则是预定义的一系列触控动作的组合,比如,我们熟知的“捏合”手势(Pinch)就是指用户将两个手指放在屏幕上并相互靠近的动作。 接下来,让我们详细探讨一下各种手势的定义与用途: 1. Tap手势:类似于桌面...

    ios手势操作演示

    手势操作让应用程序更加直观和用户友好,使用户可以通过触摸屏幕的各种动作来触发相应的功能。本项目"ios手势操作演示"是一个使用Swift编写的示例,旨在帮助开发者理解和应用iOS中的手势识别技术。 Swift是Apple为...

    ios-模仿寺库详情界面.zip

    4. **捏合手势(Pinch Gestures)**:对于查看大图功能,可能还支持双指捏合进行缩放,这需要使用UIPinchGestureRecognizer,检测手指的缩放动作。 5. **旋转手势(Rotation Gestures)**:虽然在商品详情界面不...

    自定义侧滑菜单

    - 为了增加用户友好性,菜单通常有回弹效果,即当用户松开手指后,菜单会自动滑回到原来的位置。这可以通过物理模拟库如Android的`android.support.v4.widget.ViewDragHelper`或iOS的`UIPanGestureRecognizer`的...

    ios-轮播器.zip

    5. **手势识别(Gesture Recognition)**:为了增加用户交互,轮播器通常会添加滑动手势,如`UISwipeGestureRecognizer`,允许用户手动切换图片。 6. **自动暂停与恢复**:当用户触摸屏幕时,轮播器通常会暂停自动...

    Swift-专为手势动画设计。快速简单可扩展

    Swift提供了多种内置手势识别器(Gesture Recognizers),如UIPanGestureRecognizer、UIPinchGestureRecognizer、UIRotationGestureRecognizer、UISwipeGestureRecognizer和UITapGestureRecognizer等。这些手势识别...

    IOS中各种手势操作实例代码

    缩放手势主要用于识别两个手指同时在屏幕上的捏合或张开动作,常用于图片或视图的缩放。创建`UIPinchGestureRecognizer`并将其添加到视图,然后在相应的方法(如`pinGes:`)中,使用`ges.scale`属性来获取当前的...

    iOS 开发 手势与触摸事件

    当用户手指首次接触屏幕时触发`UIControlEventTouchDown`,移动时触发`UIControlEventTouchDragInside`,手指静止时触发`UIControlEventTouchStationary`,最后手指离开屏幕时触发`UIControlEventTouchUpInside`或`...

    IOS应用源码——TouchTest.rar

    `TouchTest`可能还包含了多点触摸(multi-touch)的支持,这涉及到`UIPanGestureRecognizer`, `UIPinchGestureRecognizer`, `UIRotationGestureRecognizer`, 和 `UISwipeGestureRecognizer`等手势识别器。...

Global site tag (gtag.js) - Google Analytics