SteveLacy
Posts: 6
Joined: Fri Apr 20, 2012 11:54 pm

ios9 update breaks our app

Follow up... The app worked in the Appery tester, but when I bring the app into Xcode, the "onchange" for the select menu no longer works. Ugh. So trying to find a better solution. Any suggestions are appreciated.

Hugh Black
Posts: 0
Joined: Tue Nov 11, 2014 6:20 pm

ios9 update breaks our app

So here is what I did to get around the IOS9 breaking my app.

1) Made all select components native.
2) Converted PopUp components that are launched when the user needs to push a button, or select something from a list into a Panel component instead. 3) If the popup/panel is launched from a list and you need to maintain the place in the list when the panel closes then I figure out the location via this code before launching the panel
scrolled_val = $(document).scrollTop().valueOf();

Then on the onClose event of the panel I do this
scrollTo(0, scrolled_val);

That fixed my app and xCode liked it and I have some happy IOS9 users now.

SteveLacy
Posts: 6
Joined: Fri Apr 20, 2012 11:54 pm

ios9 update breaks our app

Thanks for the feedback. I also converted my select menus to panel selections and things are working good now (even in Xcode). Submitted the update to my app in the Apple app store and we should be good now. Thanks for your suggestion.

Crystal Ege7811176
Posts: 0
Joined: Tue Oct 13, 2015 5:23 pm

ios9 update breaks our app

Adding the attribute data-history="false" to the popup properties fixed the problems I was having with them. Stack Overflow discusses the JQM issue here: http://stackoverflow.com/questions/32...

Return to “Issues”