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.
我希望创建一个基本清单的用户体验。但我在 xCode 控件中并没有真正看到这一点。有人可以告诉我该怎么做吗?
谢谢!
我建议您自定义 UITableView 并禁用选择 (table_view.allowsSelection = NO)
在您的自定义表格中,您将有自定义行,其中包含一个用作清单的按钮(自定义 UIButton)。您可以通过该 UIButton 的单击事件来实现选中复选框的 UI 反馈(单击时它会切换到选中/关闭状态),并且在您的代码中,您将跟踪哪些行被选中。
希望清楚,请随时询问