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 中的每个部分显示三个记录。
稍后用户按下更多按钮我想显示更多记录。
任何人都可以对这些提出任何想法。
提前致谢。
控制你的numberOfRowsInSection.
numberOfRowsInSection
当用户按下更多时,最初返回 3 将行数更新为您的数据(可能是数组)计数并重新加载该部分。
你可以看到这个样本。如果您只想在启动时显示几条记录 n 稍后想要加载更多单元格,这可能会对您有所帮助..
https://github.com/Abizern/PartialTable