Re: keep scrollbar knob at bottom?
Re: keep scrollbar knob at bottom?
- Subject: Re: keep scrollbar knob at bottom?
- From: Stephan Burlot <email@hidden>
- Date: Tue, 31 Dec 2002 13:17:28 +0100
Le Mardi, 31 dic 2002, ` 08:51 Europe/Zurich, Eric Blom a icrit :
I believe the following lines of codes are relevant to my question and
my clarify my intent.
IBOutlet NSTextView *logWindow;
NSString *message;
NSPoint myPoint;
myPoint.x = 0;
myPoint.y = 200000;
[logWindow setString: [[logWindow string]
stringByAppendingString:message]];
[logWindow scrollPoint:myPoint];
Should be:
[logWindow scrollRangeToVisible:NSMakeRange([[logWindow string]
length], 0)];
Strange to see a NSTextView called logWindow...
Stephan
_______________________________________________
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.