I have a static UITableView which uses inline pickers to allow the user to change various properties. The pickers are in the cells underneath their corresponding value cell and are hidden away until the user taps on the cell above.
There are 3 sections with a total of 8 picker views in the table.
My problem is that when the user first scrolls down on the table view (to sections 2 and 3 - where there are 5 pickers) the scrolling is ridiculously choppy; it makes for bad user experience.
What is happening is that as the user is scrolling, the picker views are being loaded and because both of those events are occurring on the main thread, scrolling is rubbish.
Is there any way to improve the performance?