mikeash.com pyblog/friday-qa-2013-02-22-lets-build-uitableview.html commentshttp://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsmikeash.com Recent CommentsFri, 29 Mar 2024 14:04:32 GMTPyRSS2Gen-1.0.0http://blogs.law.harvard.edu/tech/rssJasmine - 2016-04-30 12:51:55http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsI am going to implement a basic version of a table view class at <a href="http://www.theroom.com.au">http://www.theroom.com.au</a>c6e5c58269bb7cc16c4963bf8c977725Sat, 30 Apr 2016 12:51:55 GMTM.B. - 2016-02-19 23:46:38http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsIt's interesting solution. Thanks for giving the code free for use. <br /> <br />Cheers, <br />M.0580e9f8fba6d6a4ed6aaa3b49192734Fri, 19 Feb 2016 23:46:38 GMTfacebook hack - 2015-10-06 11:18:55http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentshello there,table views are one of the most commonly used iPhone UI elements. You can use a table view to display a scrollable list of information.9c9d471d23f965b7424f23a30121c212Tue, 06 Oct 2015 11:18:55 GMTClay Bridges - 2013-03-18 18:41:40http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsIf want a let's-build-it for UICollectionView, you might be interested in <a href="https://github.com/steipete/PSTCollectionView">https://github.com/steipete/PSTCollectionView</a>, which implements a production-quality UICollectionView replacement for iOS 5.0. It also has a method of switching to native UICollectionView for 6.0+.dd1e87813382dcffae1b898f4ca9d302Mon, 18 Mar 2013 18:41:40 GMTjamie - 2013-03-07 23:19:41http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#comments@Marcin I believe the actual implementation is as you've described. UITableView.h shows an iVar _reusableTableCells which is a mutable dictionary, presumably mapping the reuse identifiers to mutable arrays of cells.bc6e77beaad484736486f8b017d62c1cThu, 07 Mar 2013 23:19:41 GMTMarcin - 2013-03-06 21:25:38http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsWould it make sense for the reusePool to be a dictionary of arrays instead, keyed by the reuseIdentifier? That way you don't need to potentially walk through the whole pool looking for a matching reuseIdentifier. Although given the reuse pool isn't likely to be very big, unless you have a huge variety of different cell types, it's probably much of a muchness.ec820ef061f4d1c83f53d0efeb17961cWed, 06 Mar 2013 21:25:38 GMTSean Heber - 2013-02-22 17:30:06http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsIf you're interested in another variation of a UITableView implementation, check out my implementation in Chameleon: <a href="https://github.com/BigZaphod/Chameleon">https://github.com/BigZaphod/Chameleon</a>53abde7573eaabf382c810144399d086Fri, 22 Feb 2013 17:30:06 GMTJeff Kelley - 2013-02-22 16:29:14http://www.mikeash.com/?page=pyblog/friday-qa-2013-02-22-lets-build-uitableview.html#commentsThis looks great! A companion piece on UICollectionView would be spectacular.ae5b902b1bcbb6924ca6e32d23587ba3Fri, 22 Feb 2013 16:29:14 GMT