Cocoa Auto Layout을 사용하여 창에서 사용자 정의보기 크기를 조정하는 방법은 무엇입니까? 단일 사용자 지정보기가있는 단일 창이 있고 사용자 지정보기의 크기를 창과 함께 조정하여 언제든지 완전히 채울 수 있도록합니다. 내가 쓰면 : NSView *contentView = [self.window contentView]; CustomView *customView = [[CustomView alloc] initWithFrame:[contentView bounds]]; [contentView addSubview:customView]; [contentView addConstraint: [NSLayoutConstraint constraintWithItem:customView attribute:NSLayo..