This content has been marked as final.
Show 1 reply
-
1. Re: Vertical Scroll in symbol div on IOS
nicholaslue Mar 5, 2014 8:42 AM (in response to nicholaslue)Sorry to answer my own question but I searched everywhere and found this.
Go to the yourFileName.js file that's in the same directory as your main .an file. Search for the the div you are looking to scroll, and search for it.
I find a bit of code that looks like this:
"${_yourDIVname}": [
["style", "left", '50px'],
["style", "overflow", 'scroll']
],
Add this line:
["style", "-webkit-overflow-scrolling", 'touch']
Don't forget the commas. The result should look similar to this:
"${_yourDIVname}": [
["style", "left", '50px'],
["style", "overflow", 'scroll'],
["style", "-webkit-overflow-scrolling", 'touch']
],
It scrolls for me now as is suspected.

