Re: Setting custom view background image via NSImageView
Subject : Re: Setting custom view background image via NSImageView
From: "Nick Kreeger" <email@hidden >
Date: Fri, 29 Sep 2006 20:23:02 -0500
Delivered-to: email@hidden
Delivered-to: email@hidden
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=nQhpHk8zcX017RU7RLCUpDs2DdfnH+6EWV4djd+qq+WMmAelNs1CxDeLJeEIQsZaF6RxfuM64KTvrF5BuY2GXj06iMOTrrxaB9m5wze7nLO27FKOhQNrKnextFdxbg+NycHQJO9V299yiYqckZczcehRxva31TTIbt9iBQG24Ws=
You should first override your |drawRect:| method of your NSView subclass.
Then you can use the following method:
- (void)drawTiledInRect:(NSRect)rect origin:(NSPoint)inOrigin
operation:(NSCompositingOperation)inOperation
{
NSGraphicsContext* gc = [NSGraphicsContext currentContext];
[gc saveGraphicsState];
[gc setPatternPhase:inOrigin];
NSColor* patternColor = [NSColor colorWithPatternImage:self];
[patternColor set];
NSRectFillUsingOperation(rect, inOperation);
[gc restoreGraphicsState];
}
... To draw the background like this:
NSPoint patternOrigin = [self convertPoint:NSMakePoint(0.0f, 0.0f) toView:nil];
[yourNSImageItem drawTiledInRect:aRect origin:patternOrigin
operation:NSCompositeCopy];
On 9/29/06, Artemiy Pavlov <email@hidden> wrote:
Hello all!
I am trying to make my custom view have a background image. What I
did is:
1. Add the UIbackground.png image to the project and the interface
builder (shows as UIbackground in the "Images" tab of the builder)
2. Select all GUI elements, Layout -> make subview of -> custom view,
set the custom class of this custom view to NSImageView
3. Define a connection
@interface SinevibesTransformerView : NSView
{
IBOutlet NSImageView * uiView;
...
}
4. In the interface builder, connect the NSImageView custom view to
uiView
5. Then in @implementation of my view:
- (void)awakeFromNib
{
[uiView setImage: [NSImage imageNamed: @"UIbackground"]];
}
Is this the correct way? Asking this because it compiles fine but
doesn't work ;-)
Thanks for any hints,
Artemiy.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden
This email sent to email@hidden
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.