I want to put a UITableView in a scrollView.
I want the full UITableView there.
Hence, I do not want UITableView to “scroll” around independently. I want the UITableView to be fully displayed inside the scrollView.
What would you do on my situation?
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 can disable scrolling on your table view:
tableView.scrollEnabled = NO;Technically, your table view is a scroll view, so all of its properties are available.