NSAlert中的附件视图不会呈现具有适当大小的文本

时间:2013-02-15 03:18:44

标签: objective-c font-size nsalert

我正在尝试显示带有附件视图的NSAlert,以便在信息性消息下方的文本块中显示链接。这是我的代码。

#import "AppDelegate.h"

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    NSAlert *activateAlert = [NSAlert alertWithMessageText: @"Some message text"
                                         defaultButton: @"OK"
                                       alternateButton: nil
                                           otherButton: nil
                             informativeTextWithFormat: @"Some informative text"];

    NSTextView *accessory = [[NSTextView alloc] initWithFrame: NSMakeRect(0,0,300,15)];
    NSFont *font = [NSFont systemFontOfSize:[NSFont smallSystemFontSize]];
    NSDictionary *textAttributes = @{NSFontAttributeName: font};
    [accessory insertText:[[NSAttributedString alloc] initWithString:@"Some text in an accessory view"
                                                      attributes: textAttributes]];
    accessory.editable = NO;
    accessory.drawsBackground = NO;
    [accessory setAutomaticLinkDetectionEnabled: YES];

    activateAlert.accessoryView = accessory;

    [activateAlert beginSheetModalForWindow: self.window
                              modalDelegate: nil
                             didEndSelector: nil
                                contextInfo: nil];
}

@end

Apple documentation说“信息性文本(使用小型系统字体)”,所以我使用的是[NSFont smallSystemFontSize],但它无法正确呈现(see):

  • 没有对齐
  • 它没有使用小字体(我尝试过使用其他值,比如1.0),但似乎忽略了字体属性。

任何提示?我应该创建自己的NSAlert组件吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

您是否尝试过为textView创建IBOutlet并将其用作NSAlert的附件视图?