提示用户在 iPhone 应用程序中进行多项选择

发布于 2024-08-26 16:47:00 字数 147 浏览 3 评论 0原文

我目前正在寻找一种方法,使用户能够从值集合中选择多个项目。

我知道这是在邮件应用程序中完成的,您可以进入文件夹的编辑模式并通过单击左侧的圆圈来选择多个项目。

我不确定这是如何实现的。有谁熟悉如何重现此类功能?

谢谢, 马特·德尔维斯

I'm currently looking for a way to provide the user with being able to select multiple items from a collection of values.

I know this is done in the mail app whereby you can go into the edit mode of a folder and select multiple items by clicking on the circle on the left hand side.

What I'm unsure about is how this is achievable. Is anyone familiar with how to reproduce such functionality?

Thanks,
Matt Delves

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那请放手 2024-09-02 16:47:00

最简单的方法是:

  1. 提供一个 UITableView,其中包含用户可以选择的所有值。
  2. 为每个表行保留一个包含一个对象(例如 NSNumber)的可变数组,以存储每一行​​的选择状态。
  3. tableView:didSelectRowAtIndexPath: 中,在数组中切换点击行的选择状态,并将点击单元格的附件类型设置为复选标记或无,具体取决于选择状态。

The easiest way is this:

  1. Provide a UITableView with all values the user can select.
  2. Keep a mutable array with one object (e.g. an NSNumber) per table row to store each row's selection state.
  3. In tableView:didSelectRowAtIndexPath:, toggle the selection state in your array for the tapped row and set the tapped cell's accessory type to checkmark or none, depending on the selection state.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文