• 【代码笔记】iOS-可以向左(右)滑动


    一,效果图。

    二,代码。

    RootViewController.m

    复制代码
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        
        self.title=@"可以向左(右)滑动";
        
        //向右滑动
        UISwipeGestureRecognizer *recognizerLeft;
        recognizerLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFromLeft:)];
        [recognizerLeft setDirection:(UISwipeGestureRecognizerDirectionLeft)];
        [self.view addGestureRecognizer:recognizerLeft];
        
        //向左滑动
        UISwipeGestureRecognizer *recognizerRight;
        recognizerRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFromRight:)];
        [recognizerRight setDirection:(UISwipeGestureRecognizerDirectionRight)];
        [self.view addGestureRecognizer:recognizerRight];
    
    }
    #pragma -mark -手势滑动
    //向左滑动
    -(void)handleSwipeFromLeft:(UISwipeGestureRecognizer *)recognizer {
        
        NSLog(@"-------进入向左手势滑动姿势-------------");
        if (recognizer.direction==UISwipeGestureRecognizerDirectionLeft) {
            
            UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"提醒" message:@"进入向左手势滑动姿势" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
            [alert show];
            
            
        }
    }
    //向右滑动
    -(void)handleSwipeFromRight:(UISwipeGestureRecognizer *)recognizer {
        
        NSLog(@"-------进入向右手势滑动姿势-------------");
        if (recognizer.direction==UISwipeGestureRecognizerDirectionRight) {
            
            UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"提醒" message:@"进入向右手势滑动姿势" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
            [alert show];
            
        }
    }
    复制代码

     

     

     
     
  • 相关阅读:
    mysql拼接字符串和过滤字符的方法
    python ichat使用学习记录
    php简单混淆类加密文件如何解密?
    如何读取xml文件,根据xml节点属性查询并输出xml文件
    GoldenDict
    R群体
    samtools中faidx索引格式
    Conservation and the genetics of population重要语录
    图形分类
    电脑网络知识理解
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/5625666.html
Copyright © 2020-2023  润新知