Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Scrolling Like Butter

Scrolling Like Butter

How to increase scrolling performance in UITableView a super long time ago.

Presented at Awesome Inc. Mobile miniConference in Lexington, Kentucky.

Sam Soffes

July 18, 2009
Tweet

More Decks by Sam Soffes

Other Decks in Programming

Transcript

  1. static NSString *cellIdentifier = @"cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease]; }