I would like to build up a table view section into my iOS app just like the Facebook style (with many information in every row, images and buttons, ..).
I also want to include Core Animation effects on every row, like fade out the cell, or customize the graphic interface.
Do you recommend me to use the UITableView class or something else more 'customizable'?
You should use the regular
UITableView
, but customUITableViewCells
.UITableView
's support fading and other kind of animations for adding/removing/reloading cellsBe careful when using these methods, because the numberOfRowsInSection: function gets called again, and if the new result doesn't match the new number of rows, your app will crash
IE: you have 5 rows, and delete 2, your method must then return 3