23

如何以编程方式设置窗口大小?我在 IB 中有一个窗口,我想在我的代码中设置它的大小以使其更大。

4

6 回答 6

34

用于-setFrame:display:animate:最大控制:

NSRect frame = [window frame];
frame.size = theSizeYouWant;
[window setFrame: frame display: YES animate: whetherYouWantAnimation];

请注意,窗口坐标与您可能习惯的坐标不同。在 OS X 的 Quartz/Cocoa 中,矩形的原点位于其左下角。要确保原点保持不变:

NSRect frame = [window frame];
frame.origin.y -= frame.size.height; // remove the old height
frame.origin.y += theSizeYouWant.height; // add the new height
frame.size = theSizeYouWant;
// continue as before
于 2012-09-15T14:59:34.857 回答
12

实际上似乎需要反转 +/- 以防止窗口在屏幕上移动:

NSRect frame = [window frame];
frame.origin.y += frame.size.height; // origin.y is top Y coordinate now
frame.origin.y -= theSizeYouWant.height; // new Y coordinate for the origin
frame.size = theSizeYouWant;
于 2013-10-23T00:33:51.583 回答
7

斯威夫特版本

var frame = self.view.window?.frame
frame?.size = NSSize(width: 400, height:200)
self.view.window?.setFrame(frame!, display: true)
于 2017-08-15T05:39:54.913 回答
4

利用setFrame:display:animate:

[window setFrame:NSMakeRect(0.f, 0.f, 200.f, 200.f) display:YES animate:YES];
于 2012-09-15T14:58:19.213 回答
4

通常我想根据内容的大小(不包括标题栏)调整窗口大小:

var rect = window.contentRect(forFrameRect: window.frame)
rect.size = myKnownContentSize
let frame = window.frameRect(forContentRect: rect)
window.setFrame(frame, display: true, animate: true)
于 2019-03-13T15:39:50.467 回答
0

swift 4.x 7 OSX 我的两分钱:

a) 不要调用 viewDidLoad b) 进入主队列... b) 等待一段时间... 例如使用:

private final func setSize(){
    if let w = self.view.window{
        var frame = w.frame
        frame.size = NSSize(width: 400, height: 800)
        w.setFrame(frame, display: true, animate: true)

    }
}
于 2019-03-13T07:56:00.973 回答