I'm developing an iOS app with latest SDK.
I have an UITableView
with a lot of rows but I only show five rows. In other words, the user only can see five rows. He/she can scrolls the table, but only five rows are visible.
I want to make selectable the third row. The user only can select the third visible row.
I'm trying to simulate an UIPickerView
first, because I'm using Core Data and all the code now works fine with UITableView
delegate and, second, I don't know how to customize UIPickerView
background and selection area.
How can I make the third visible row the only row selectable?