Am in search of an efficient way to programatically find an item in a scrollview column and bring that item to the top of the scroll view. What I am doing now is looping through each label on the scrollview (scrollview is only one column of labels), and keeping a running total of the height of all the rows it passes through while searching. When it finds the item, I set the scroll position to the value of that running total. Works like a charm, but just wondering if there isn't a better way.