How to fast rendering UITableView
- by pubudu
In my program has two view controller.
first one has one button.and second one has tableview with custom cell.
in this cell has 5 textviews.
when i click button of first tableview.it shows second view controller.
Its is very slow rendering table view with 5 , 6 rows.it is working well with simulator.but it is very slow with actual i pad.
when i click the button i have to wait 2,3 second with button pressed status.and after it view the second view controller it also very slow rendering.i can see it render rows.
[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
this one also i used.when i comment this table from my second view.it navigate first view controller to second view controller very fast.
how can i solve this issue?