抽屉效果整理

来源:互联网 发布:手机端编程软件 编辑:程序博客网 时间:2024/04/30 04:14

方法1:以容器视图控制器作为抽屉,并封装 tabbarController,添加手势实现滑动效果,并可添加模糊效果等。
附上 demo git 地址:https://github.com/linjiu/DrawerDemo

方法2:抽屉为 View,View添加两个手势,pan拖拽,tap点击,利用view.center移动。
网上有很多 demo可以借鉴:
http://my.oschina.net/u/574245/blog/390283
http://blog.csdn.net/toss156/article/details/7400065
剖析:http://www.th7.cn/Program/IOS/201406/220981.shtml
引入第三方:http://www.cnblogs.com/ludashi/p/4025127.html
仿网易抽屉效果:http://www.jb51.net/article/54358.htm

0 0