6

I'm looking to implement the same technique used by atebits in the Twitter app to achieve very fast UITableView scrolling,

http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/

But, due to Tweetie being purchased by Twitter, atebits has ceased to exist and the sample code has gone, along with all of the css for the site.

Does anybody have a copy of the sample code or a different resource on implementing this method of drawing UITableViewCell's into one view?

Alex
  • 2,513
  • 5
  • 27
  • 42
  • I don't think you need this anymore; Apple's table suite sample code now includes this technique. Only it's modernized. – Steven Fisher Mar 15 '12 at 18:40
  • 1
    [Here's](http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007318) the link to the Sample Code – nayaab Mar 28 '12 at 13:21
  • For anybody looking for the original writeup, it's available on [archive.org](http://web.archive.org/web/20100322222950/http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/) (donate to them if it helped you!) – Phil Calvin May 29 '12 at 13:50

1 Answers1

4

Available here: https://github.com/enormego/ABTableViewCell

He is simply doing his own drawing in the drawRect: method inherited from UIView. See also Tricks for improving iPhone UITableView scrolling performance?

Community
  • 1
  • 1
Jano
  • 62,815
  • 21
  • 164
  • 192