Hi all,
I have so many cells in table view say nearly 500. Each and every cells have their own images and string paragraphs. Actually i draw those images & strings with the help of UIView's drawRect method. So i need to calculate image and each string's position (including their width & height to measure the cell height and wrapping areas). If i did the calculation at a time for all cells, it takes some time.. Thats not good. I want to show the cells quickly. So i want to do calculations only for the visible cells and want to immediately show the visible cells. Then the calculation for other cells should happend in the background. One more thing, i will do calculations only once for each cell. Once i did, i will store the values in array. Next time i will simply show the things according with the array values, not by calculations..
Please anyone help me to do it... I just want to know whether it is possible? if yes, what is the procedure to achieve it?
Thanks in Advance...