Re: NSGraphicsContext restore crashes my xtension
Re: NSGraphicsContext restore crashes my xtension
- Subject: Re: NSGraphicsContext restore crashes my xtension
- From: Graham Cox <email@hidden>
- Date: Mon, 28 Jul 2008 14:02:14 +1000
On 28 Jul 2008, at 11:05 am, Ken Tozier wrote:
Saving/restoring the context with
*oldContext = [NSGraphicsContext currentContext];
[NSGraphicsContext setCurrentContext: oldContext];
Did the trick. No more crashes.
Since this is such a common thing to need to do, it's usually more
convenient to just put:
[NSGraphicContext saveGraphicsState];
at the top of your code and
[NSGraphicsContext restoreGraphicsState];
at the bottom.
Graham
_______________________________________________
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