Hello Cody!
Is your app shared with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a? What is app name?
Hello Cody!
Is your app shared with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a? What is app name?
Hi Maryna,
Yes it is. Its RanzoV20.
Regards.
Have you been able to access the app? What is the timeline in which we can expect feedback for planning purposes?
Hello Cody,
I've just checked, and RanzoV20 isn't shared with us. Could you please check it once again?
Cody,
Oh, sorry my bad. Yes it is shared and our developers are already working on it.
Thank you.
Hello!
On Source tab open ios/projectName/Classes open MainViewController.m file and replace existing viewDidLoad method with the following:
pre(void)viewDidLoad
{
[super viewDidLoad];
[self registerCustomURLProtocol];
[self allowBackgroundAudioPlay];
self.initializeCompleted = YES;
self.webView.dataDetectorTypes = UIDataDetectorTypeNone;
self.webView.scrollView.bounces = NO;
if(nil != self.delayedRequest)
{ [self.webView loadRequest:self.delayedRequest]; self.delayedRequest = nil; }
}/pre
Tested with your app and it worked for me (iPhone 6, iOS 8.1.1)
Another way is to change DisallowOverscroll value on config.xml file:
pre<preference name="DisallowOverscroll" value="true" />/pre
Didn't test this way