如何使用SWRevealViewController显示调整大小的侧边栏



我在IOS应用程序(通用)中使用SWRevealViewController。我在iPhone和iPad上都有侧边栏但我想显示的侧边栏覆盖了90%的屏幕,怎么做?

打开SWRevealViewController.m文件,然后得到_initDefaultProperties方法。在此方法中,您可以获得侧屏幕尺寸和位置

- (void)_initDefaultProperties
{
_frontViewPosition = FrontViewPositionLeft;
_rearViewPosition = FrontViewPositionLeft;
_rightViewPosition = FrontViewPositionLeft;
_rearViewRevealWidth = 260.0f;      /// this is the method u change the side bar width
_rearViewRevealOverdraw = 60.0f;
_rearViewRevealDisplacement = 40.0f;
_rightViewRevealWidth = 260.0f;
_rightViewRevealOverdraw = 60.0f;
_rightViewRevealDisplacement = 40.0f;
_bounceBackOnOverdraw = YES;
_bounceBackOnLeftOverdraw = YES;
_stableDragOnOverdraw = NO;
_stableDragOnLeftOverdraw = NO;
_presentFrontViewHierarchically = NO;
_quickFlickVelocity = 250.0f;
_toggleAnimationDuration = 0.25;
_frontViewShadowRadius = 2.5f;
_frontViewShadowOffset = CGSizeMake(0.0f, 2.5f);
_frontViewShadowOpacity = 1.0f;
_userInteractionStore = YES;
_animationQueue = [NSMutableArray array];
_draggableBorderWidth = 0.0f;
}

只需使用if语句来确定侧边栏的正确大小。像这样:

if(device == iPad)
     _rearViewRevealWidth = 600.0f;
else if(device == iPhone)
     _rearViewRevealWidth = 260.0f;

打开SWRevealViewController.m文件,然后得到_initDefaultProperties方法。

 - (void)_initDefaultProperties
{
 AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
      float x=(appDelegate.windowWidth)*9/10; //windowWidth=self.window.bounds.size.width;
      float y=x-260;
    _frontViewPosition = FrontViewPositionLeft;
    _rearViewPosition = FrontViewPositionRightMost;
    _rightViewPosition = FrontViewPositionLeft;
    _rearViewRevealWidth = x;
    _rearViewRevealOverdraw = 60.0f+y;
    _rearViewRevealDisplacement = 40.0f+y;
....
}

你可以这样做…当你有SWRevealViewController的子类。为这个问题调用属性并设置为您想要的…希望这对某人有所帮助。

self.rightViewRevealWidth = [UIScreen mainScreen].bounds.size.width * 0.9;

最新更新