最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

IOS代碼筆記之左右滑動(dòng)效果

 更新時(shí)間:2016年07月06日 09:44:05   作者:情深雨蒙  
這篇文章主要為大家詳細(xì)介紹了IOS代碼筆記之左右滑動(dòng)效果的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了ios實(shí)現(xiàn)左右滑動(dòng)操作代碼,供大家參考,具體內(nèi)容如下

一、效果圖

 

二、代碼
RootViewController.m

 - (void)viewDidLoad
{
  [super viewDidLoad];
  // Do any additional setup after loading the view.
  
  self.title=@"可以向左(右)滑動(dòng)";
  
  //向右滑動(dòng)
  UISwipeGestureRecognizer *recognizerLeft;
  recognizerLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFromLeft:)];
  [recognizerLeft setDirection:(UISwipeGestureRecognizerDirectionLeft)];
  [self.view addGestureRecognizer:recognizerLeft];
  
  //向左滑動(dòng)
  UISwipeGestureRecognizer *recognizerRight;
  recognizerRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFromRight:)];
  [recognizerRight setDirection:(UISwipeGestureRecognizerDirectionRight)];
  [self.view addGestureRecognizer:recognizerRight];

}
#pragma -mark -手勢(shì)滑動(dòng)
//向左滑動(dòng)
-(void)handleSwipeFromLeft:(UISwipeGestureRecognizer *)recognizer {
  
  NSLog(@"-------進(jìn)入向左手勢(shì)滑動(dòng)姿勢(shì)-------------");
  if (recognizer.direction==UISwipeGestureRecognizerDirectionLeft) {
    
    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"提醒" message:@"進(jìn)入向左手勢(shì)滑動(dòng)姿勢(shì)" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確定", nil];
    [alert show];
    
    
  }
}
//向右滑動(dòng)
-(void)handleSwipeFromRight:(UISwipeGestureRecognizer *)recognizer {
  
  NSLog(@"-------進(jìn)入向右手勢(shì)滑動(dòng)姿勢(shì)-------------");
  if (recognizer.direction==UISwipeGestureRecognizerDirectionRight) {
    
    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"提醒" message:@"進(jìn)入向右手勢(shì)滑動(dòng)姿勢(shì)" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確定", nil];
    [alert show];
    
  }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

永安市| 和硕县| 马公市| 葫芦岛市| 烟台市| 遂昌县| 邢台市| 渝中区| 兴隆县| 怀宁县| 莲花县| 大英县| 将乐县| 珲春市| 宁阳县| 赫章县| 渑池县| 靖西县| 交口县| 海丰县| 平果县| 呈贡县| 城市| 沭阳县| 青阳县| 合江县| 曲松县| 南投市| 改则县| 偃师市| 开远市| 玉山县| 蛟河市| 绥滨县| 宁陵县| 高雄县| 高阳县| 嘉定区| 阜宁县| 双鸭山市| 饶平县|