Is that possible to hide scrollbar(without removing scrolling) phonegap ios?

前端 未结 2 754
野趣味
野趣味 2021-01-17 00:48

Hi iam working one cordova ios project in that i have one gallery page. Currently images are scrolling vertically and i can see that scroll bar (as shown in image) .But i ne

2条回答
  •  南方客
    南方客 (楼主)
    2021-01-17 01:24

    I found a solution to this problem by a just adding a couple lines of code to the existing Cordova files. Open the CDVViewController.m file in CordovaLib.xcodeproj -> Classes -> Cleaver folder. In the viewDidLoad method after self.webView.scalesPageToFit = [enableViewportScale boolValue];, paste these two lines to disable both horizontal and vertical scrollbars

    self.webView.scrollView.showsVerticalScrollIndicator = NO;
    self.webView.scrollView.showsHorizontalScrollIndicator = NO;
    

提交回复
热议问题