i have a UITableView and i am showing different images in cells,each image has different height,how can i customize the cell height with respect to heights of images ?
Share
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.
Implement the
UITableViewDelegatemethod– tableView:heightForRowAtIndexPath:. See the documentation.For example, if you’re using Interface Builder, right-button-drag from your table view to the controller itself, add
<UITableViewDelegate>afterUIViewControllerin your view controller’s class declaration, and add something like this to the the class.mfile: