Hi Can I add the vertical alphabets selector thing like that we use in UITableView, in UIView? Best Regards
Adding vertical alphabets selector in UIView
619 Views Asked by Aqueel At
3
Hi Can I add the vertical alphabets selector thing like that we use in UITableView, in UIView? Best Regards
Yes.
If you create the UIView yourself you can do whatever you want.
It's not even that hard in your case. Some UILabels as subviews and some logic in
touchesDidSomething:withEvent:
to figure out which label is near the touch.And a delegate method that tells which section was touched.
I think I could need something like that, so I decided to try it.
works as expected and looks similar to the index selector of uitableview
as usual, I didn't check for bugs, and this should not be a copy&paste solution.