Is it possible to have a UITableView that has a fixed height for all cells, except for the cell at the top (index 0)?
If so, how is this possible?
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.
You have to set the tableView’s delegate to an object that responds to
tableView:heightForRowAtIndexPath:.If your topmost cell does not have to be a UITableViewCell, you can also use a section header instead of a cell. See same protocol.