Re: warning: 'NSEntityDescription' may not respond to

2008-05-30 Thread Peter Burtis
The compiler only knows about methods declared somewhere or the headers, and Core Data accessor methods are handled at runtime and not declared anywhere. It's only a warning and not an error because the compiler is smart enough to know that Objective C can do cool stuff like that. One

Re: Which framework for Wifi?

2008-05-28 Thread Peter Burtis
On May 27, 2008, at 11:28 PM, J. Scott Tury wrote: And in 10.5.2 the -x command line option does not work at all Hrm... That's odd and disturbing. But not *quite* true. :) I'm using 'airport -x -s' in my little network jumper app to list networks in range, which--I just checked--*does*

Re: Which framework for Wifi?

2008-05-27 Thread Peter Burtis
There is a private command line utility at the path: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/ Current/Resources/airport Calling it with NSTask works. If there's a better way I'd love to know it. It will give XML output with the right flag (-x) so it's quite

Re: NSWindow CoreAnimation Delegate not being called

2008-05-24 Thread Peter Burtis
I'm no core animation expert, but. This... // self is an NSWindow instance CAAnimation *anim = [CABasicAnimation animation]; [anim setDelegate:self]; [self setAnimations:[NSDictionary dictionaryWithObject:anim forKey:@frame]]; [[self animator]

NSTextField will not become editable in a borderless window

2008-05-22 Thread Peter Burtis
a completely custom window? I'm running 10.5.2, if that matters. Thanks, Peter Burtis ___ 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

Re: NSTextField will not become editable in a borderless window

2008-05-22 Thread Peter Burtis
but can't find where I used it. Someone else may remember this trick and help me out... of course, it's not a great solution but it works from 10.3 through 10.5 so far... G. On 22 May 2008, at 10:13 pm, Peter Burtis wrote: When I add an NSTextField to a borderless window, nothing I