Re: text highlighting with CALayer and NSTextVew
Re: text highlighting with CALayer and NSTextVew
- Subject: Re: text highlighting with CALayer and NSTextVew
- From: Koen van der Drift <email@hidden>
- Date: Mon, 27 Aug 2012 09:21:10 -0400
> Sorry, I did in fact mean -[NSView convertRectToLayer:] and -convertRectToBacking:. As well as the point-based conversion methods.
I am now using a local method in myNSTextView:
- (NSRect) convertRectToLayer: (NSRect)
{
aRect.origin.y = (self.bounds.size.height - aRect.size.height -
aRect.origin.y);
return aRect;
}
Seems to working fine in my case.
- Koen.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden