如何在其contentView上使用NSImageView拖动NSWindow?

时间:2013-11-08 03:21:42

标签: macos cocoa nswindow

我正在创建一个像iTunes mini窗口一样的迷你窗口:

enter image description here

它是可拖动的并且上面有背景图像。

然后我创建了一个NSWindow的子类并覆盖了它的initWithContentRect:styleMask:backing:defer:方法,并为其添加了NSImageView

- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
{
    contentRect.size = CGSizeMake(287, 287);
    self = [super initWithContentRect:contentRect styleMask:aStyle backing:bufferingType defer:flag];
    if (self)
    {
        [self setMovableByWindowBackground:YES];
        [self setOpaque:NO];
        [self setBackgroundColor:[NSColor colorWithCalibratedWhite:1.0 alpha:0.5]];

        NSImageView *imageView = [[NSImageView alloc] initWithFrame:(CGRect){CGPointZero, contentRect.size}];
        imageView.image = [NSImage imageNamed:@"MiniWindow.png"];
        [self.contentView addSubview:imageView];
    }
    return self;
}

但是在我将NSImageView添加到窗口的contentView之后,窗口变得不可分割。

如何让窗口再次变得可拖动?

祝你好运

1 个答案:

答案 0 :(得分:11)

创建NSImageView的子类并覆盖mouseDownCanMoveWindow方法:

- (BOOL)mouseDownCanMoveWindow
{
    return YES;
}