欢迎来到入门教程网!

Swift

当前位置:主页 > 软件编程 > Swift >

swift4 使用DrawerController实现侧滑菜单功能的示例代码

来源:本站原创|时间:2020-01-11|栏目:Swift|点击:

本文介绍了swift4 使用DrawerController实现侧滑功能的示例代码,分享给大家,具体如下:

直接上图

安装

类库开源地址:https://github.com/sascha/DrawerController

可惜的是,它已经不维护了,很好用的一个侧滑实现

pod 'DrawerController'

新建侧滑视图

import UIKit

// 这个类就是一个 UIViewController 可以在里面写任何你想写的东西
class LeftViewController: UIViewController {

  override func viewDidLoad() {
    super.viewDidLoad()
    self.title = "Left Menu"
    self.view.backgroundColor = .white
  }

  override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
  }
}

修改 AppDelegate 类

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    
  let drawerController = DrawerController(centerViewController: UINavigationController(rootViewController: ViewController()), leftDrawerViewController: UINavigationController(rootViewController: LeftViewController()))
  
  // 侧滑打开宽度
  drawerController.maximumLeftDrawerWidth = 250
  // 打开侧滑手势
  drawerController.openDrawerGestureModeMask = .all
  // 关闭侧滑手势
  drawerController.closeDrawerGestureModeMask = .all
  
  self.window?.rootViewController = drawerController
  return true
}

Navigation上添加按钮

icon可以在这里下载:https://www.jb51.net/softs/578475.html

修改 ViewController

import UIKit

class ViewController: UIViewController {

  override func viewDidLoad() {
    super.viewDidLoad()
    self.title = "DrawerDemo"
    self.view.backgroundColor = .white
    
    // 给导航条添加一个按钮
    self.navigationItem.leftBarButtonItem = UIBarButtonItem(image: UIImage(named: "baseline-menu-48px"), style: .plain, target: self, action: #selector(ViewController.openLeftMenu))
    
    self.navigationController?.navigationBar.barStyle = .default
    // menu icon默认是蓝色,下面将其改成黑色的
    self.navigationController?.navigationBar.tintColor = .black
  }
  
  @objc func openLeftMenu() {
    // 打开drawerController
    self.navigationController?.evo_drawerController?.toggleLeftDrawerSide(animated: true, completion: nil)
  }

  override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

上一篇:Swift中的命名空间详解

栏    目:Swift

下一篇:Swift中defer的正确使用方法

本文标题:swift4 使用DrawerController实现侧滑菜单功能的示例代码

本文地址:https://www.xiuzhanwang.com/a1/Swift/11940.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有