Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

atebits Twitter fast scrolling

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?

like image 332
Alex Avatar asked Sep 28 '11 10:09

Alex


1 Answers

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?

like image 174
Jano Avatar answered Oct 09 '22 16:10

Jano