如何使用 Swift 2 将 MMDrawerController 的抽屉宽度设置为屏幕的宽度?
How to set the Drawer width of MMDrawerController to the width of the Screen using Swift 2?
我正在我的项目中使用 MMDrawerController。我有一个从左到右显示的菜单,它工作正常。但我的要求是有一个宽度与当前屏幕宽度相同的抽屉。我该怎么做 使用 Swift ?
目前的画面是这样的,我需要有白色区域来覆盖整个画面。
像
一样使用MMDrawerController
的setMaximumLeftDrawerWidth
属性
centerContainer?.setMaximumLeftDrawerWidth(UIScreen.mainScreen().bounds.width, animated: true, completion: nil)
方法可以参考MMDrawerController.h
-(void)setMaximumLeftDrawerWidth:(CGFloat)width animated:(BOOL)animated completion:(void(^)(BOOL finished))completion;
我正在我的项目中使用 MMDrawerController。我有一个从左到右显示的菜单,它工作正常。但我的要求是有一个宽度与当前屏幕宽度相同的抽屉。我该怎么做 使用 Swift ?
目前的画面是这样的,我需要有白色区域来覆盖整个画面。
像
一样使用MMDrawerController
的setMaximumLeftDrawerWidth
属性
centerContainer?.setMaximumLeftDrawerWidth(UIScreen.mainScreen().bounds.width, animated: true, completion: nil)
方法可以参考MMDrawerController.h
-(void)setMaximumLeftDrawerWidth:(CGFloat)width animated:(BOOL)animated completion:(void(^)(BOOL finished))completion;