我正在创建NSFontPanel
但选择字体不会调用该changeFont:
方法。
我在NSWindowController
子类中定义了这些方法:
- (IBAction)showFontPanel:(id)sender {
[[NSFontPanel sharedFontPanel] makeKeyAndOrderFront:self];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSFont *theFont = [NSFont fontWithName:[prefs stringForKey:iepFontName] size:[prefs floatForKey:iepFontSize]];
[[NSFontPanel sharedFontPanel] setPanelFont:theFont isMultiple:NO];
[[NSFontManager sharedFontManager] setDelegate:self];
}
- (void)changeFont:(id)sender {
NSLog(@"changeFont");
}
- (NSUInteger)validModesForFontPanel:(NSFontPanel *)fontPanel {
return NSFontPanelFaceModeMask | NSFontPanelSizeModeMask | NSFontPanelCollectionModeMask;
}
字体面板出现时选择了正确的字体和大小,并且仅在 中启用了模式validModesForFontPanel:
,但是当我选择不同的字体时,changeFont:
不会调用该方法。我的理解是changeFont:
动作消息被发送到响应者链上。作为测试,我changeFont:
在我的应用程序委托中放置了一个相同的方法(它应该在响应者链中),但它也没有被调用。我在某处错过了一步吗?