我有几个带有不同文本的 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 窗口的大小?

最佳答案

NSAlert 可以通过添加足够宽度的附件 View 来加宽:

NSAlert *alert = [[[NSAlert alloc] init] autorelease];
alert.accessoryView = [[[NSView alloc] initWithFrame:NSMakeRect(0, 0, 500, 0)] autorelease];

关于objective-c - NSAlert 调整窗口大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14820335/

10-10 20:32