• 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
call "setContentBorderThickness:forEdge:" in Tiger
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

call "setContentBorderThickness:forEdge:" in Tiger


  • Subject: call "setContentBorderThickness:forEdge:" in Tiger
  • From: Georg Seifert <email@hidden>
  • Date: Mon, 25 Aug 2008 21:22:58 +0200

Hello,

 I have a problem:

- (id)initWithContentRect:(NSRect)contentRect styleMask: (unsigned int)windowStyle backing:(NSBackingStoreType)bufferingType defer: (BOOL)deferCreation
{
BOOL useTextured = YES;
if([self respondsToSelector:@selector(setContentBorderThickness:forEdge:)]) {
windowStyle ^= NSTexturedBackgroundWindowMask;
useTextured = NO;
}

self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
if(!useTextured)
{
[self setContentBorderThickness:27.0 forEdge: NSMinYEdge];
}
return self;
}


if I compile against the 10.5 SDK everything work fine. But if I use the 10.4 SDK it crashes:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'setContentBorderThickness:forEdge: may not be called with NSMinXEdge'


(build and tested on Leopard, on Powerbook, latest OS and xCode)

Can someone help with this?

Thanks in advance.
Georg
_______________________________________________

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: call "setContentBorderThickness:forEdge:" in Tiger
      • From: Jonathan Hess <email@hidden>
    • Re: call "setContentBorderThickness:forEdge:" in Tiger
      • From: "Matt Ball" <email@hidden>
  • Prev by Date: Re: Core Data Bindings with Table View
  • Next by Date: Re: Core Data Bindings with Table View
  • Previous by thread: Re: Core Data Bindings with Table View
  • Next by thread: Re: call "setContentBorderThickness:forEdge:" in Tiger
  • Index(es):
    • Date
    • Thread