├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | 17 | # OS X 18 | .DS_Store 19 | Icon? 20 | 21 | # Thumbnails 22 | ._* 23 | 24 | # Files that might appear on external disk 25 | .Spotlight-V100 26 | .Trashes 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Please don't use this code anymore. It is old and not very good. 2 | 3 | These days you should use UITableView's new `registerNib:forCellReuseIdentifier:` method instead, or even easier, use storyboards with prototype cells. 4 | --------------------------------------------------------------------------------