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.
我的UITabelView. 我的第一个单元格(在第一部分)代表一些标题。当我滚动时,我可以让这个单元格不移动UITableView,所以其他内容(单元格)会滚动但不是首先滚动。
UITabelView
UITableView
不,这不受支持。表格视图中的所有内容都随着表格视图滚动。与您想要的最接近的是普通表中的节标题。当部分滚动时,部分标题保持在屏幕顶部,但它与它的部分保持一致。
您唯一的选择是使用 aUIViewController而不是 a UITableViewController。将您的标题视图添加到顶部,然后UITableView在标题视图下方添加您自己的。您将需要连接所有内容,以便视图控制器像表格视图控制器一样工作。
UIViewController
UITableViewController