Developers,
I have added uitextviews as a subviews in uitableviewcell. I have about 4 columns and 30 rows in custom cell. Now the problem is that i have to alloc everytime new uitextview , thats why scrolling of tableview have become very slow, cells take so much time to load.
Can anyone tell me how can i alloc my textview only once and reuse that for other cells also.
Developers, I have added uitextviews as a subviews in uitableviewcell. I have about 4
Share
If you create a custom subclass of UITableViewCell, it is possible to queue/dequeue cell that have a UITextField. You should be able to reset your textview using the following method:
It is normal for a program to have multiple different subclass of a UITableViewCell. This is one of the most subclassed object in UIKit