iOS实现简易抽屉效果、双边抽屉效果

本文实例为大家分享了iOS实现抽屉效果的全部代码,供大家参考,具体内容如下

iOS实现简易抽屉效果,代码:

@interface ViewController () {
 UIView* _leftView;
}

@end

@implementation ViewController

- (void)viewDidLoad {
 [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.

 _leftView = [[UIView alloc] init];
 //把左侧边的view先隐藏
 _leftView.frame = CGRectMake(-200, 0, 200, self.view.frame.size.height);
 _leftView.backgroundColor = [UIColor greenColor];
 [self.view addSubview:_leftView];

 UIPanGestureRecognizer* pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
 [self.view addGestureRecognizer:pan];
}

- (void)handlePan:(UIPanGestureRecognizer*) recognizer {
 CGPoint translation = [recognizer translationInView:self.view];
 //增量后的x坐标位置
 CGFloat Xresult = translation.x + _leftView.frame.origin.x;

 //向右
 if (translation.x >= 0) {
  //leftView已全部拉出,则无法再向右
  if (_leftView.frame.origin.x >= 0 || Xresult >= 0) {
   _leftView.frame = CGRectMake(0, 0, 200, self.view.frame.size.height);

   return;
  }
 } else if (translation.x < 0) {//向左
  //leftView已全部收回,则无法再向左
  if (_leftView.frame.origin.x <= -200 || Xresult <= -200) {
   _leftView.frame = CGRectMake(-200, 0, 200, self.view.frame.size.height);
   return;
  }
 }

 CGRect frame = _leftView.frame;
 frame.origin.x += translation.x;
 _leftView.frame = frame;

 //清空移动的距离,这是关键
 [recognizer setTranslation:CGPointZero inView:recognizer.view];

 //做弹回效果,以中轴为界限
 if (recognizer.state == UIGestureRecognizerStateEnded) {
  if (_leftView.frame.origin.x > -100) {
   [self closeView:NO];
  } else {
   [self closeView:YES];
  }
 }
}

- (void)closeView:(BOOL)close {
 if (close) {
  [self moveView:CGRectMake(-200, 0, 200, self.view.frame.size.height)];
 } else {
  [self moveView:CGRectMake(0, 0, 200, self.view.frame.size.height)];
 }
}

- (void)moveView:(CGRect)frame {
 [UIView animateWithDuration:0.3 animations:^{
  _leftView.frame = frame;
 } completion:^(BOOL finished) {

 }];
}

iOS实现双边抽屉效果,代码:

#import "PathView.h"
#import "UIView+Additions.h"

@implementation PathView

- (instancetype)init {
 self = [super init];
 if (self) {
  [self setupGestureRecognizer];
 }
 return self;
}

- (void)setupGestureRecognizer {
 UIPanGestureRecognizer* pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
 [self addGestureRecognizer:pan];
}

- (void)handlePan:(UIPanGestureRecognizer*)recognizer {
 CGPoint translation = [recognizer translationInView:self];

 CGFloat Xresult = translation.x + self.left;

 if (translation.x >= 0) {//向右
  if (self.left >= _leftWidth || Xresult >= _leftWidth) {
   self.frame = CGRectMake(_leftWidth, 0, self.width, self.height);
   return;
  }
 }
 else if (translation.x < 0) {//向左
  if (self.left <= -_rightWidth || Xresult <= -_rightWidth) {
   self.frame = CGRectMake(-_rightWidth, 0, self.width, self.height);
   return;
  }
 }

 self.left += translation.x;

 if (recognizer.state == UIGestureRecognizerStateEnded) {
  if (self.left > _leftWidth / 2) {
   [self openLeft:YES openRight:NO];
  }

  else if (self.left < -(_rightWidth / 2)) {
   [self openLeft:NO openRight:YES];
  }

  else {
   [self openLeft:NO openRight:NO];
  }
 }

 //清空移动的距离
 [recognizer setTranslation:CGPointZero inView:recognizer.view];
}

- (void)openLeft:(BOOL)left openRight:(BOOL)right {
 if (!left && !right) {
  [self moveView:CGRectMake(0, 0, self.width, self.height)];

 } else if (!left && right) {
  [self moveView:CGRectMake(-_rightWidth, 0, self.width, self.height)];

 } else if (left && !right) {
  [self moveView:CGRectMake(_leftWidth, 0, self.width, self.height)];

 }
}

- (void)moveView:(CGRect)frame {
 [UIView animateWithDuration:0.3 animations:^{
  self.frame = frame;
 } completion:^(BOOL finished) {

 }];
}

上面是实现的具体内容,所以不做多少注释,只不过把手势移到view里面,让view自己改变自己的frame;再有就是添加了两个属性,来指定左右两边各自抽屉抽出的宽度,某一边不需要,只要设置为0就好了。

以上就是本文的全部内容,希望能够帮助大家顺利实现iOS抽屉效果。

(0)

相关推荐

  • iOS抽屉效果开发案例分享

    本文实例为大家分享了iOS抽屉效果开发实例,供大家参考,具体内容如下 在显示在窗口的控制器上添加三个view(如果只需要往一边滑动就只加2个view) 先声明三个view #import "ViewController.h" @interface ViewController () @property(nonatomic, weak) UIView *mainV; @property(nonatomic, weak) UIView *leftV; @property(nonatomic

  • Android控件之SlidingDrawer(滑动式抽屉)详解与实例分享

    SlidingDrawer效果想必大家也见到过,它就是1.5模拟器上进入应用程序列表的效果.下面是截图 一.简介  SlidingDrawer隐藏屏外的内容,并允许用户通过handle以显示隐藏内容.它可以垂直或水平滑动,它有俩个View组成,其一 是可以拖动的handle,其二是隐藏内容的View.它里面的控件必须设置布局,在布局文件中必须指定handle和content.例如下面 复制代码 代码如下: <SlidingDrawer android:layout_width="fill_

  • iOS如何用100行代码实现简单的抽屉效果

    前言 iOS中抽屉效果的简单实现现在很多应用中都使用到了,网上也有很多了例子,本文主要是通过简单的一些代码来实现的,有需要的可以一起学习学习. 下面是效果图 示例代码如下 #import <UIKit/UIKit.h> @interface MainViewController : UIViewController + (instancetype)mainViewControllerWithLeftViewController:(UIViewController *)leftViewContr

  • ios仿侧边抽屉效果实现代码

    效果图如下 代码实现以及思路下面分析: 代码创建导航控制器 Appdelegate.m中 #import "AppDelegate.h" #import "ViewController.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

  • iOS动画之向右拉的抽屉3D效果

    首先我们忽略掉3D效果,先要做的是一个右拉的抽屉效果. 总体思路: 1.创建一个ContainerViewController容器控制器,然后把左侧选择菜单的SideMenuViewController,和右侧负责显示内容的MainViewController 添加到ContainerViewController中. 2.给容器控制器ContainerViewController添加一个手势监听,通过修改偏移量完成抽屉效果. 3.设置anchorPoint,给左侧SideMenuViewCont

  • iOS实现左右拖动抽屉效果

    本文实例介绍了iOS实现左右拖动抽屉效果,具体内容如下 利用了触摸事件滑动 touchesMoved: 来触发左右视图的出现和消失 利用loadView方法中添加view 在self.view载入前就把 左右中View都设置好frame 每一个方法都由单独的功能. #import "DarwViewController.h" @interface DarwViewController () @property (nonatomic, weak) UIView *leftView; @p

  • iOS开发之路--仿网易抽屉效果

    最终效果图: MainStoryBoard示意图: BeyondViewController.h // // BeyondViewController.h // 19_抽屉效果_仿网易 // // Created by beyond on 14-8-1. // Copyright (c) 2014年 com.beyond. All rights reserved. // #import <UIKit/UIKit.h> #import "LeftTableViewControllerD

  • iOS实现简单的抽屉效果

    说到抽屉效果在iOS中比较有名的第三方类库就是PPRevealSideViewController.一说到第三方类库就自然而然的想到我们的CocoaPods,本文用CocoaPods引入PPRevealSideViewController,然后在我们的工程中以代码结合storyboard来做出抽屉效果. 一.在工程中用CocoaPods引入第三方插件PPRevealSideViewController. (1).在终端中搜索PPRevealSideViewController的版本 (2).在P

  • iOS实现侧拉栏抽屉效果

    本文实例介绍了iOS实现侧拉栏抽屉效果的相关代码,分享给大家供大家参考,具体内容如下 需要导入第三方的类库如下: 抽屉效果所需第三方类库下载 效果:既可以两侧都实现抽屉效果也可只实现左侧栏或者右侧栏的抽屉效果 关于抽屉效果主要是AppDelegate的代码 AppDelegate.h文件代码: <span style="font-size:18px;"><span style="font-size:18px;">#import <UIK

  • IOS实现点击滑动抽屉效果

    最近,看到好多Android上的抽屉效果,也忍不住想要自己写一个.在Android里面可以用SlidingDrawer,很方便的实现.IOS上面就只有自己写了.其实原理很简单就是 UIView 的移动,和一些手势的操作. 效果图: // // DrawerView.h // DrawerDemo // // Created by Zhouhaifeng on 12-3-27. // Copyright (c) 2012年 CJLU. All rights reserved. // #import

随机推荐