在 nstextfield 中使用自定义 nstextfieldcell
我有一个自定义 nstextfieldcell。
我想我可以将一个文本字段拖到 xib 并单击它的单元格,然后将单元格的类更改为我的自定义类。但这不起作用。
另外,我想我可以将自定义单元格从库(我制作了一个插件)拖到文本字段上,它会像在表格中一样设置新单元格。那也行不通。
有谁知道如何在文本字段中使用自定义单元格?
我注意到的一件事是,如果我安装了 bwtoolkit 插件,我可以在 textfieldcell 类的可用单元格列表中看到该插件的自定义单元格,但我看不到我的......
I have a custom nstextfieldcell.
I thought I could drag a textfield to a xib and click on it's cell, then change the cell's class to my custom class.That doesn't work.
Also, I thought I could drag the custom cell from the library (i made a plugin) over the textfield and it would set the new cell like in a table. That doesn't work either.
Does anybody know how to use a custom cell in a textfield?
One thing that I noticed, if I have the bwtoolkit plugin installed, I can see the plugin's custom cells in the list of available cells for the textfieldcell's class but I do not see mine...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果我忘记更改我的 classDescription 文件中的超类。它被设置为 NSView 并且需要子类 NSTextFieldCell
Turns out I forgot to change the superclass in my classDescription file. It was set as NSView and it needed to supclass an NSTextFieldCell