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.
我有一个 的子类UITableViewController,我想在屏幕底部添加一个视图,即使滚动表格,它也应该停留在底部。当表格可以滚动时,该视图应保持固定在其位置。
UITableViewController
有什么建议么?
除了继承 UITableViewController 之外,您还可以继承 UIViewController ,它包含一个标准 UIView 集作为它的视图出口。然后在这个 UIView 里面放一个 UITableView。
所以你会有: UIViewController > UIView > UITableView
通过这种方式,您可以将粘性视图添加到 UITableView 顶部的 UIView 中,并且它将保持静止。
需要注意的一件事是,如果您仍然希望用户在触摸粘性视图时能够滚动,您可能必须从粘性视图向下传递触摸。