6

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

4

4 回答 4

13

打开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;
}
于 2014-08-07T07:08:42.997 回答
2

只需一个 if 语句来确定侧边栏的正确大小。像这样的东西:

if(device == iPad)
     _rearViewRevealWidth = 600.0f;
else if(device == iPhone)
     _rearViewRevealWidth = 260.0f;
于 2014-08-07T16:21:39.980 回答
1

打开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;
....
}
于 2015-06-03T06:40:49.723 回答
0

你可以做这样的事情......当你有来自 SWRevealViewController 的子类时......为这个问题调用属性并根据需要进行设置......希望它对某人有所帮助......

self.rightViewRevealWidth = [UIScreen mainScreen].bounds.size.width * 0.9;
于 2016-03-25T11:09:12.447 回答