Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥

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.

Avatar for Sam Soffes

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]; }