Skip to content

Instantly share code, notes, and snippets.

@davidcann
Created May 7, 2009 23:28
Show Gist options
  • Save davidcann/108471 to your computer and use it in GitHub Desktop.
Save davidcann/108471 to your computer and use it in GitHub Desktop.
CPWindow sheet;
...
sheet = [[CPWindow alloc] initWithContentRect:CGRectMake(0, 0, [formView frame].size.width, [formView frame].size.height) styleMask:CPBorderlessWindowMask];
[sheet setAutoresizingMask:CPViewMinXMargin | CPViewMaxXMargin | CPViewMaxYMargin];
[sheet setHasShadow:YES];
[sheet setContentView:formView];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment