• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to draw background image in my app window
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to draw background image in my app window


  • Subject: Re: How to draw background image in my app window
  • From: Michael Vannorsdel <email@hidden>
  • Date: Sat, 30 May 2009 13:12:53 -0600

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 (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


  • Follow-Ups:
    • Re: How to draw background image in my app window
      • From: cocoa learner <email@hidden>
References: 
 >How to draw background image in my app window (From: cocoa learner <email@hidden>)
 >Re: How to draw background image in my app window (From: Nick Zitzmann <email@hidden>)
 >Re: How to draw background image in my app window (From: cocoa learner <email@hidden>)
 >Re: How to draw background image in my app window (From: Michael Vannorsdel <email@hidden>)
 >Re: How to draw background image in my app window (From: cocoa learner <email@hidden>)

  • Prev by Date: Re: How to draw background image in my app window
  • Next by Date: Re: Message from view to viewController
  • Previous by thread: Re: How to draw background image in my app window
  • Next by thread: Re: How to draw background image in my app window
  • Index(es):
    • Date
    • Thread