我有几个不同文本的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窗口的大小?
答案 0 :(得分:8)
可以通过添加足够宽度的附件视图来扩展NSAlert:
NSAlert *alert = [[[NSAlert alloc] init] autorelease];
alert.accessoryView = [[[NSView alloc] initWithFrame:NSMakeRect(0, 0, 500, 0)] autorelease];