Skip to content

Instantly share code, notes, and snippets.

@cbess
Created November 25, 2011 08:36
Show Gist options
  • Select an option

  • Save cbess/1393058 to your computer and use it in GitHub Desktop.

Select an option

Save cbess/1393058 to your computer and use it in GitHub Desktop.
Set NSView layer background image
// Sets the view's background to the given image
// prior to call, you may need to execute: `view.wantsLayer = YES`
void SetBackgroundImage(NSView *view, NSString *imageName)
{
view.layer.contents = (id)[NSImage imageNamed:imageName];
}
@czwen

czwen commented May 17, 2013

Copy link
Copy Markdown

thank you so much

@czwen

czwen commented May 17, 2013

Copy link
Copy Markdown

thank you so much

@czwen

czwen commented May 17, 2013

Copy link
Copy Markdown

thank you so much

@czwen

czwen commented May 17, 2013

Copy link
Copy Markdown

thank you so much

@czwen

czwen commented May 17, 2013

Copy link
Copy Markdown

thank you so much

@Cy-Yasin

Cy-Yasin commented Jan 4, 2017

Copy link
Copy Markdown

it works perfect, thank you so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment