Titouan de Bailleul
Titouan de Bailleul

Reputation: 12949

Different UITableViewCell styles

'Default UITableViewCell styles from Apple should not be used'

Can somebody tell me what the previous sentence means. Is it possible to create your own style. If yes, how ?

Thank you

Upvotes: 0

Views: 6377

Answers (1)

Dennis Stritzke
Dennis Stritzke

Reputation: 5558

The Statement simply isn't true. If one of the Standard UITableViewCellStyles matches the layout and properties you want, then you should use them. But if not build your own. ;)

Detailed documentation: http://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7

If you want your own cell layout, subclass UITableViewCell!

Upvotes: 2

Related Questions