令牌字段的可拖动元素,如 Mac 时钟格式面板

发布于 2024-09-01 18:54:36 字数 202 浏览 8 评论 0原文

我需要能够创建一个带有可拖动元素的令牌字段,例如 Mac 时钟格式面板(参见下图)。

非常感谢,亚历克斯。

令牌字段

I need to be able to make a token field with draggable elements like the Mac clock format panel (see the following image).

Thanks so much, Alex.

Token Field

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

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

发布评论

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

评论(1

旧城烟雨 2024-09-08 18:54:37

它们称为令牌字段。苹果有一个 他们的指南。 (在不知道您目标的更多细节的情况下,这已经是我所能得到的最精确的了。)

编辑

我注意到对您的问题进行了编辑。您想要一些行为类似于系统偏好设置的日期面板的东西。 我想象中正在发生的情况的细分:

  • 在“时间元素*”部分中,有一些对象(模型)实现了您可以在文本字段中使用的数据片段(小时、分钟、秒等)。
  • 以下是 还有一个关联的视图,用于以与令牌相同的样式绘制这些元素(可能取自 Cocoa 中的某些内容,可能是自定义视图)
  • 对象可以接受任意对象以及字符串。可以将这些对象从“时间元素”部分拖到令牌字段的委托上,然后处理这些非字符串对象。

我想,上面链接的指南包含处理令牌字段中的非字符串元素的信息。要做的就是为要表示的数据部分创建模型,然后使用(可能是自定义的)视图呈现它们。

They're called token fields. Apple has a guide for them. (Without knowing any more details of your goals, that's about as precise as I can get.)

Edit

I noticed the edits to your question. You want something that behaves like System Preference's date panel. Here's a breakdown of what I imagine is happening:

  • In the "Time Elements* section, there are objects (models) that implement the pieces of data you can use in the text field (hours, minutes, seconds, etc.).
  • There is also an associated view for drawing these elements in the same style as the token (maybe taken from something in Cocoa, maybe a custom view).
  • NSTokenField objects can accept arbitrary objects, as well as strings. So you can drag these objects from the "Time Elements" section onto the token field. The token field's delegate than handles these non-string objects.

The guide linked above contains the information for handling non-string elements in token fields. I imagine all you need to do is create models for the data parts you want to represent, and then render them using a (possibly custom) view.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文