Is there a way in IOS 8 to auto-size (shrink the current view) when the keyboard appears and suggestion tool is on or off ?
I tried with a simple ScrollView but it doesn't shrink the current view . It does it on Android.. what am I missing?
~~ var entryView = Titanium.UI.createScrollView({ backgroundColor:'white', width:'100%', contentWidth:'auto', contentHeight:'auto', showVerticalScrollIndicator:true, showHorizontalScrollIndicator:false, verticalBounce:true }); ~~