my text goes under a the scrollers....
my text goes under a the scrollers....
- Subject: my text goes under a the scrollers....
- From: Andrea Salomoni <email@hidden>
- Date: Thu, 9 Feb 2006 14:24:06 +0100
Hi to all,
I created an NSScrollView and a NSTextView programmatically in this way:
NSScrollView *scrollview = [[NSScrollView alloc]
initWithFrame:cFrame];
NSSize contentSize = [scrollview contentSize];
[scrollview setBorderType:NSNoBorder];
[scrollview setAutohidesScrollers:YES];
[scrollview setBorderType:NSBezelBorder];
[scrollview setHasVerticalScroller:YES];
[scrollview setHasHorizontalScroller:NO];
[scrollview setAutoresizingMask:NSViewWidthSizable |
NSViewHeightSizable];
[startTab setView:scrollview];
// create the textview
chatView = [[URLTextView alloc] initWithFrame:[scrollview frame]];
// textView conf
[chatView setEditable:YES];
[[chatView textContainer]
setContainerSize:NSMakeSize(contentSize.width, FLT_MAX)];
[[chatView textContainer] setWidthTracksTextView:YES];
[chatView setFrame:[scrollview frame]];
[scrollview setDocumentView:chatView];
But when I type some text my lines finish always under the
scroller.... How can I do to stop the typing and force return?
Thank you all
Andrea
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden