I make my UITableViewCell wait before I call drawRect:, as some background process takes place. In that time, it fills the cell with another cell’s contents. I don’t want it to do that though, I want it to appear empty. How do I stop this behaviour?
I make my UITableViewCell wait before I call drawRect: , as some background process
Share
Instead of making drawRect wait, call it but have it draw what you want there while it is loading (empty areas, loading…, etc) and then call it again to draw what is needed when you have the data.