I'm developing an iPhone application similar like Facebook ,but for different purpose. I'm having an array of data for each and every row in UITableView
i.e content,photos,no.of likes,comments,title etc. I'm having custom cell ,which inherits UITableviewcell
,in which I have created all my UI objects such as UIIMageView
,UILabel
,UIButton
etc. While scrolling my UITableView
I will feed my data to this custom cell and it works fine.
My issue is the scrolling speed!
Whenever I'm scrolling, there is struck in it and the scrolling is slow. All my UI components assignment are done in main thread.
Is there any way to increase the scrolling speed or to assign value to my UI components in separate thread?