‘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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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!