国产探花免费观看_亚洲丰满少妇自慰呻吟_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];      }}

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 安乡县| 花莲县| 民勤县| 长治县| 大冶市| 江口县| 盖州市| 双峰县| 米脂县| 扶余县| 太原市| 时尚| 达州市| 舞钢市| 大安市| 白银市| 舞阳县| 天长市| 定兴县| 万盛区| 旬邑县| 南昌市| 红原县| 元朗区| 江门市| 梁河县| 富顺县| 南雄市| 岳阳市| 广水市| 泰顺县| 台南市| 边坝县| 微山县| 乌拉特后旗| 江西省| 日土县| 田阳县| 清丰县| 化州市| 淳化县|