Twitter quick scrolling

I want to implement the same technique that atebits uses in a Twitter application to achieve a very fast UITableView scroll.

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

But, due to the fact that Tweetie is bought by Twitter, atheits ceased to exist, and the example code was gone along with all the CSS for the site.

Does anyone have an instance of sample code or another resource when implementing this method of drawing a UITableViewCell in one view?

+6
source share
1 answer

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

It just does its own drawing in the drawRect method: inherited from UIView. See Also Tricks to Improve iPhone UITableView Scrolling Performance?

+4
source

Source: https://habr.com/ru/post/898197/


All Articles