- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSView *superview = [self.window contentView];
[superview addSubview:mainView];
[superview setAutoresizesSubviews:YES];
[mainView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
[mainView release];}
2. 고정 크기를 가지는 NSView
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSView *superview = [self.window contentView];
[superview addSubview:mainView];
[mainView release];
}
* mainView는 NSView에서 상속받아 만든 클래스이다.
3. 해제
- (void)applicationWillTerminate:(NSNotification *)notification
{
[super dealloc];
}
댓글 없음:
댓글 쓰기