UIWebView under transparent UINavigationBar

前端 未结 6 1096
醉酒成梦
醉酒成梦 2021-02-09 21:30

I have a UIWebView which I want to put under my translucent UINavigationBar. Normally when I put a UIScrollView under a translucent UINavigationBar, I set its contentOffset such

相关标签:
6条回答
  • 2021-02-09 22:13

    I achieved this by setting the UIWebView subviews to not clip to bounds, then I could put a toolbar on top of it and get the desired effect:

    for (UIView *subview in theWebView.subviews) {
        subview.clipsToBounds = NO;
    }
    
    0 讨论(0)
  • 2021-02-09 22:23

    As of iOS 5 you can use the scrollView property of UIWebView, and set a contentInset to adjust the positon.

    CGFloat top = 0.0;
    
    if( self.navigationController != nil && self.navigationController.navigationBar.translucent ) {
        top = self.navigationController.navigationBar.bounds.size.height;
    }
    
    UIWebView* wv = ...
    
    wv.scrollView.contentInset = UIEdgeInsetsMake(top, 0.0, 0.0, 0.0);
    
    0 讨论(0)
  • 2021-02-09 22:27

    The easiest way is to set:

    webView.clipsToBounds = NO;
    webView.scrollView.clipsToBounds = NO;
    

    It work on bouth iOS 7 & 6, and I didn't try, but on iOS 5 probably too

    0 讨论(0)
  • 2021-02-09 22:27

    With the advent of iOS 7, the offset height would now need to include the height of the top status area. Otherwise, iOS7 devices will have 20 pixels of webview still hidden under the navigation bar.

    In a project that needs to support iOS 7 and older devices, a macro like the one found here:

    #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
    

    Can be very useful. A modified version of zerotool's helpful code listed above could now look something like this:

    if (self.navigationController != nil && self.navigationController.navigationBar.translucent) {
        top = self.navigationController.navigationBar.bounds.size.height;
        if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")) {
            top += [[UIScreen mainScreen] applicationFrame].origin.y;
        }
    }
    // (etc.)
    
    0 讨论(0)
  • 2021-02-09 22:30

    I am not sure if there is a clean method to doing this. I have not tried it, but here is an idea:

    1. draw the uiwebview at origin 0,0
    2. intercept all screen touches
    3. if you detect the user dragging up (scrolling up the webview), dont pass the touch on
    4. Instead, move the webview up x pixels so its origin is (0,-x). Then change the height to add x pixels
    5. Youy will need to keep some sort of state so that you know when to stop resizing the webview and start passing on the touches so the webview will scroll.

    Getting it back is the same only you do it on a drag down (scrolling down the webview).

    0 讨论(0)
  • 2021-02-09 22:33

    Another way to possibly do this is to insert a div in the html code you are rendering so that it is spaced out up on the top of the page. make sure you set your zoom correctly and set the uiwebviews origin to (0, -x) to begin with.

    0 讨论(0)
提交回复
热议问题