Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
_mainView = [[_window contentView] retain]; ... [_window release]; _window = nil; return _mainView;
上記のコード スニペットに出会いました。実際にどのような効果があるのか知りたいです。どうも。
NSViewこれで、ウィンドウのビュー階層 で最もアクセスしやすいオブジェクトの所有者になりました。
NSView
NSView *mainView = [[window1 contentView] retain]; [window1 release]; window1 = nil; [window setContentView:mainView];