NSWindow
ビューに実装されたインターフェイスビルダーでスクロールビューを追加しました。CustomView を追加しNSScrollview
たので、このコード行を使用しています。
AppDelegate.m
- (void)awakeFromNib
id docView = paintingfield;
id viewas = [[NSScrollView alloc] initWithFrame:
[[scrollview contentView] frame]];
[scrollview setHasVerticalScroller:YES];
[scrollview setHasHorizontalScroller:YES];
[scrollview setBorderType:NSNoBorder];
[scrollview setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
[scrollview setDocumentView:docView];
[scrollview setContentView:viewas];
私のAppDelegate.hの
IBOutlet NSScrollView * scrollview;
IBOutlet NSView * view;
IBOutlet CustomView *paintingfield;
IBOutlets
、CustomView、CustomView から CustomView に
適切NSScrollView
にリンクされています。問題と呼ばれるのは、画像を開くと、画像が適切に開かずにスクロールして開いた画像ではなく、空白のウィンドウが表示されるためです。どうすれば修正できますか?NSScrollView
NSView
-awakeFromNib
NSScrollView
NSScrollView