Page 3 of 4

prevent header from scrolling

Posted: Wed Nov 26, 2014 11:33 am
by Maryna Brodina

Hello Cody!

Is your app shared with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a? What is app name?


prevent header from scrolling

Posted: Wed Nov 26, 2014 5:55 pm
by Cody Blue

Hi Maryna,

Yes it is. Its RanzoV20.

Regards.


prevent header from scrolling

Posted: Fri Nov 28, 2014 7:44 am
by Cody Blue

Have you been able to access the app? What is the timeline in which we can expect feedback for planning purposes?


prevent header from scrolling

Posted: Fri Nov 28, 2014 7:49 am
by Evgene Karachevtsev

Hello Cody,

I've just checked, and RanzoV20 isn't shared with us. Could you please check it once again?


prevent header from scrolling

Posted: Fri Nov 28, 2014 7:54 am
by Cody Blue

It is (please see screenshot - it has been shared for nearly an year now and your team has been logging in on a periodic basis).

Image


prevent header from scrolling

Posted: Fri Nov 28, 2014 7:59 am
by Evgene Karachevtsev

Cody,

Oh, sorry my bad. Yes it is shared and our developers are already working on it.


prevent header from scrolling

Posted: Fri Nov 28, 2014 8:42 am
by Cody Blue

Thank you.


prevent header from scrolling

Posted: Mon Dec 01, 2014 11:45 am
by Maryna Brodina

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)


prevent header from scrolling

Posted: Mon Dec 01, 2014 11:56 am
by Maryna Brodina

Another way is to change DisallowOverscroll value on config.xml file:
pre<preference name="DisallowOverscroll" value="true" />/pre
Didn't test this way


prevent header from scrolling

Posted: Wed Dec 03, 2014 3:04 am
by Cody Blue

Thank you, Maryna.

I got the attached alert on editing source code, and the language is a bit confusing: I am not sure if I understand all the implications this bears. Is there more documentation/explanation on it?

Image