Cocoa Touch Tutorial: Using Grand Central Dispatch for Asynchronous Table View Cells

One of the problems that an iOS developer will often face is the performance of table view cells. Table view cells are loaded on-demand by the UITableView that they’re a part of; the system calls &#8209cellForRowAtIndexPath: on the table view’s dataSource property to fetch a new cell in order to display it. Since this method … Continue reading Cocoa Touch Tutorial: Using Grand Central Dispatch for Asynchronous Table View Cells