I have a UITable with a scroll view that has button objects dynamically created in it. Sometimes there is 1 item, other times there are 50 items. I'm hoping to use UINavigation keys to navigate through the buttons that are available.
I can't figure out how this should be set up exactly using the native components in NGUI. Currently, I just procedurally set the up and down to each enabled object, which works fine. However, the scroll view will not update with the current selection. The scroll view never changes via UIKeyNavigation, but it works fine if the mouse moves the associated slider. The only component I can find that could fix this is center on child, which is not desirable funcitonality. I'm hoping for the basic funcitonality where if you select an item outside of the view (say below), then everything moves up just enough to bring it into view. How would you recommend fixing this?