Creating a NSScrollView programmatically
Creating a NSScrollView programmatically
- Subject: Creating a NSScrollView programmatically
- From: Arthur VIGAN <email@hidden>
- Date: Mon, 27 Oct 2003 12:23:29 +0100
Hi,
I am trying to create an NSScrollView programmatically in the content
view of a window. I have the following code, but it doesn't work
(scrollView and mainWindow are defined in the header file):
- (IBAction)createScrollView:(id)sender
{
NSView *windowContentView = [mainWindow contentView];
NSRect windowContentBounds = [windowContentView bounds];
scrollView = [[NSScrollView alloc] init];
[scrollView setBorderType:NSNoBorder];
[scrollView setHasVerticalScroller:YES];
[scrollView setBounds: windowContentBounds];
[windowContentView addSubview:scrollView];
}
When my window appears, it is just empty. Can anybody help?
-- Arthur
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.