NSWindow标题栏的右半部分不可拖动

时间:2011-05-02 18:33:34

标签: objective-c cocoa macos nswindow

我有一个NSWindow的实例,我以编程方式调整大小(使用setFrame)。在创建时,它的默认大小为50x50。然后我调用setFrame将其调整为350x450:一切都很好,我可以拖动我想要的窗口。然后,在程序的后面,我将其调整为1024x768。此时,我可以拖动标题栏的唯一部分是前350个像素:左边部分。如果我拖动右侧部分,没有任何反应。好像标题栏仍然认为窗口有以前的大小。

更新(添加了设置框架的代码):

void CGLWindowMac::_setSize(int width, int height)
    {
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
        NSRect sFrame;

        sFrame = [NSWindow contentRectForFrameRect:[mObjcImp frame] styleMask:[mObjcImp styleMask]];

        sFrame.origin.y += sFrame.size.height;
        sFrame.origin.y -= height;
        sFrame.size.height = height;
        sFrame.size.width = width;
        sFrame = [NSWindow frameRectForContentRect:sFrame
                                                    styleMask:[mObjcImp styleMask]];

        NSLog(@"Frame Before setsize: cur Size(%f, %f) ", [mObjcImp frame].size.width, [mObjcImp frame].size.height);

        [mObjcImp setFrame:sFrame display:YES animate:NO];

        NSLog(@"Frame After setsize: cur Size(%f, %f) new val(%d, %d)", [mObjcImp frame].size.width, [mObjcImp frame].size.height, width, height);

        // Tell the application that the window size has change.
        onSize(width, height);

        [pool release];
    }

这是输出:

2011-05-04 08:50:47.313 ClientProMac[2461:a0f] Frame Before setsize: cur Size(50.000000, 72.000000) 
2011-05-04 08:50:47.340 ClientProMac[2461:a0f] Frame After setsize: cur Size(350.000000, 472.000000) new val(350, 450)
2011-05-04 08:50:49.148 ClientProMac[2461:7003] Frame Before setsize: cur Size(350.000000, 472.000000) 
2011-05-04 08:50:49.160 ClientProMac[2461:7003] Frame After setsize: cur Size(1024.000000, 790.000000) new val(1024, 768)

奇怪的是,如果我通过拖动角落调整窗口大小,则完整的标题栏会再次拖动:错误消失。

之前有人看过这种行为吗?是什么导致它,我该如何解决它。

感谢。

1 个答案:

答案 0 :(得分:2)

NSWindow(以及可可中的大多数GUI操作)都不是线程安全的。确保您正在调整主线程上的窗口大小。

例如:

NSRect frame = NSMakeRect(42, 42, 420, 420);
dispatch_sync(dispatch_get_main_queue(), ^{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    [window setFrame:frame];
    [pool release];
});

如果你需要向后兼容并且不想使用GCD,你可以使用 - [NSObject performSelectorOnMainThread:withObject:waitUntilDone:]。