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

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 施甸县| 宁河县| 工布江达县| 东至县| 连山| 德格县| 祁连县| 理塘县| 隆林| 德兴市| 若尔盖县| 柘城县| 龙陵县| 昭通市| 柳州市| 舒城县| 永修县| 合川市| 当阳市| 潜江市| 潜山县| 凌源市| 双柏县| 秭归县| 乌兰县| 成都市| 临泉县| 保康县| 犍为县| 广河县| 德兴市| 沈丘县| 舟曲县| 谢通门县| 吴川市| 五原县| 固安县| 连城县| 嘉善县| 牟定县| 喀什市|