Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 UITableView 放在滚动视图中。
我想要完整的 UITableView 那里。
因此,我不希望 UITableView 独立地“滚动”。我希望 UITableView 完全显示在滚动视图中。
对于我的情况,你会怎么做?
您可以在表格视图上禁用滚动:tableView.scrollEnabled = NO;
tableView.scrollEnabled = NO;
从技术上讲,您的表格视图是一个滚动视图,因此它的所有属性都可用。