自定义 Cocoas NSFontPanel
Cocoas NSFontPanel 有哪些自定义选项?
iWork Pages 中可访问的 NSFontPanel 顶部有“文本下划线”、“文本删除线”和“文档颜色”控件。我们不希望这些出现在我们的 NSFontPanel 中。有什么方法可以删除或禁用这些控件吗?
What customization options are there for Cocoas NSFontPanel?
The NSFontPanel accessible in iWork Pages has "Text Underline", "Text Strikethrough" and "Document Color" controls at the top. We don't want these in our NSFontPanel. Is there any way to remove or disable these controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在相关响应程序中实施NSFontPanelValidation 协议 (s)。
Implement the NSFontPanelValidation protocol in the relevant responder(s).
正如您所说,响应者必须实现 NSFontPanelValidation 协议并重写 - (NSUInteger)validModesForFontPanel:(NSFontPanel *)fontPanel 方法。但是当 NSFontPanel 显示时不会调用此方法。
Like you said, the responder must implement the NSFontPanelValidation protocol and override the - (NSUInteger)validModesForFontPanel:(NSFontPanel *)fontPanel method. But this method does not invoked when the NSFontPanel showed.