How to fast rendering UITableView
Posted
by
pubudu
on Stack Overflow
See other posts from Stack Overflow
or by pubudu
Published on 2013-11-10T01:45:29Z
Indexed on
2013/11/10
3:53 UTC
Read the original article
Hit count: 131
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?
© Stack Overflow or respective owner