0
在我的NSScrollView中,我將文檔視圖設置爲NSView。然而,內容總是在滾動視圖的左下角,我試圖設置NSView的AutoresizingMask,但沒有鎖定。問:如何在NSScrollview Document視圖中設置AutoresizingMask?NSScrollview DocumentView AutoresizingMask
在我的NSScrollView中,我將文檔視圖設置爲NSView。然而,內容總是在滾動視圖的左下角,我試圖設置NSView的AutoresizingMask,但沒有鎖定。問:如何在NSScrollview Document視圖中設置AutoresizingMask?NSScrollview DocumentView AutoresizingMask
我遇到了同樣的問題。這是我解決它的方式。
NSView *documentView = [NSView alloc] initWithFrame:aFrame];
[documentView setAutoresizesSubviews:YES];
[documentView setAutoresizingMask:NSViewWidthSizable];
[myScrollView setDocumentView:documentView];