4

我有几个带有不同文本的 NSAlert 对话框。我想将警报窗口宽度调整为文本,以使文本不换行。因此我使用这段代码来计算字符串的宽度:

NSSize size = [myString sizeWithAttributes:@{NSFontAttributeName: [NSFont systemFontOfSize:[NSFont systemFontSize]]}];

然后我尝试调整警报的窗口:

NSAlert *alert = [NSAlert alertWithMessageText:...
...
NSPanel *panel = alert.window;
NSRect frame = panel.frame;
float x = ((NSTextField*)[[((NSPanel*)(alert.window)).contentView subviews] objectAtIndex:5]).frame.origin.x;    //the x-position of the NSTextField
frame.size.width = size.width + x;
[alert.window setFrame:frame display:YES];

此代码有效,但只是第一次,我使用此代码调用该方法。如果我使用另一个字符串并再次调用该方法,则窗口将不会调整大小(尽管计算出的宽度会有所不同)。

有什么想法,我如何调整 NSAlert 窗口的大小?

4

1 回答 1

13

可以通过添加足够宽度的附件视图来扩大 NSAlert:

NSAlert *alert = [[[NSAlert alloc] init] autorelease];
alert.accessoryView = [[[NSView alloc] initWithFrame:NSMakeRect(0, 0, 500, 0)] autorelease];
于 2014-10-22T07:13:16.907 回答