我可以将 NSDatePicker 对象放入 NSTableView 的单元格中吗?
现在我只是使用 NSTextCell 和 NSDateFormatter,我只是想知道这是否可能,也许通过使用 .
提前致谢!
Right now I am just using a NSTextCell with a NSDateFormatter, I just wanted to know if this was possible, perhaps by using the .
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并非没有进行大量黑客攻击...出于某种原因,Apple 没有为表格提供日期选择器单元格。我会保留日期格式化程序或使其在单击单元格时弹出图形日期选择器。
我在 xib 文件中创建了一个菜单,将单元格菜单属性的出口设置为菜单,创建了 nsdatepicker 的子类,覆盖 mouseDown: ,并使其在单击时显示菜单。
not without making a bunch of hacking... Apple doesn't provide the date picker cell for the table for some reason. I would keep the date formatter or make it so when the cell is clicked, it pops open the graphical date picker.
I created a menu in the xib file, set the outlet for the cell's menu property to the menu, created a subclass of nsdatepicker, overrode the mouseDown:, and made it display the menu when clicked.