I have a iPhone app using Prototype cells in a UITableViewController. I want to put a title right above the first row (where it says Prototype Cells). How do I do this? (Ignore what’s in the first row…that’s what I want the title to say)

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.
Since you want to use dynamic prototypes cells, not static cells, it’s best to do this in code. Override the method
in your table view controller and return the title you want for each section. If you only plan to have one section, then it’s as easy as
But then if you only have one section, it may be bad UI design to label it, depending on what it is you’re doing…