No, the conclusion is : That _is_ the easy and straight way to do it.

Subclassing is your power and friend, my friend. Once you understand what those lines actually do, you should have a different point-of-view.

"Embrace the subclass, for they know what they are doing."  :-)

gary

On May 30, 2009, at 9:03 PM, cocoa learner wrote:

Ok. Let me try this.So conclusion is there is no easy and straight way to do
it. Have to subclass NSView.

Thanx Michael.
Cocoa.learner

On Sun, May 31, 2009 at 1:12 AM, Michael Vannorsdel <mikev...@gmail.com>wrote:

You'd really be better off making an NSView subclass and having it draw the
image you want in drawRect:.

- (void)awakeFromNib
{
       myImage = [[NSImage alloc] init....

       [self setNeedsDisplay:YES];
}

- (void)drawRect:(NSRect)rect
{
       NSSize isize = [myImage size];
[myImage drawInRect:[self bounds] fromRect:NSMakeRect(0.0, 0.0,
isize.width, isize.height) operation: NSCompositeCopy fraction:1.0];
}

*this was written in mail, may gave errors.

On May 30, 2009, at 11:45 AM, cocoa learner wrote:

Yah Andy and Michael you all were right. But still I have some problem.
1>. While resizing the window Image is not getting resized.
2>. My controls (NSButton and NSTextField) are not visible after the
awakeFromNib call.


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/cocoa.learner% 40gmail.com

This email sent to cocoa.lear...@gmail.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/toothpic%40fastq.com

This email sent to tooth...@fastq.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to