这就是我正在做的事情
然后我添加此代码
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
[myView setWantsLayer:YES];
myView.layer.backgroundColor = CGColorCreateGenericRGB(0,0,0,0.5);
NSRect vFrame = myView.frame;
vFrame.origin.x = 0;
vFrame.origin.y = 0;
vFrame.size.width = 100;
vFrame.size.height = 100;
[myView setFrame:vFrame];
}
我的问题是 - 每当我调整窗口大小时,myView(我的NSView)都会切换到原始位置和大小。所有我想要它即使我调整大小也不应该改变它的起源或大小