distriqt / airnativeextensions

DEPRECATED: Original repository of the distriqt native extensions and is no longer maintained. Please see our site for the latest ANEs
https://airnativeextensions.com
2 stars 0 forks source link

Dialog popover - unable to select last item on iOS #238

Closed mola2alex closed 8 years ago

mola2alex commented 9 years ago

Using the code below

    var test:PopoverOptions=new PopoverOptions();
    test.autoScale = true;
    test.arrowDirection=4;
    test.showNavigationBar=true;
    Dialog.service.showSelectPopover(myindex, mytitle, myarray,test);

Where myarray is say ["1","2","3","4","5","6","7","8","9","10"]. I cannot pick #10 item. The iOS bounce backpushes it below the selectable area and only #9 can be selected. Workaround is to push another array element with blank character.

Used iOS 8 on ipad 3 but also have seen same behavior on iOS 7 on iPhone 4.