我在我的项目中使用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;