CustomView *customView = [[CustomView alloc] init];
[self.window.contentView addSubview:customView];
ウィンドウのサイズが変更されたときにcustomView.frame.size.height
常に等しくなるようにするにはどうすればよいですか?contentView.frame.size.height
customView.frame.size.width = 20;
autoresizingMask を適用する Swift バージョン:
let customView = CustomView()
customView.autoresizingMask = [.width, .height]
self.window.contentView.addSubview(customView)
カスタムビューのautoresizingMaskを設定します。
CustomView *customView = [[CustomView alloc] init];
customView.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
[self.window.contentView addSubview:customView];