国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS代碼筆記之左右滑動效果

2020-07-26 03:18:47
字體:
來源:轉載
供稿:網友

本文實例為大家分享了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];      }}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 县级市| 枝江市| 博野县| 叶城县| 东城区| 大邑县| 宁化县| 松江区| 清新县| 石嘴山市| 灵川县| 沾益县| 威宁| 河间市| 嘉兴市| 太谷县| 尚义县| 边坝县| 和顺县| 鹿邑县| 黄山市| 尉犁县| 长海县| 鹿泉市| 那坡县| 河曲县| 枝江市| 重庆市| 车险| 西华县| 孟州市| 西充县| 威宁| 青河县| 康乐县| 渭南市| 台湾省| 武冈市| 铜山县| 托克托县| 武清区|