Updating Core Data model object with an NSButtonCell

2010-10-18 Thread Jake
89:a0f] End of model toggle: 0 2010-10-16 18:06:34.866 Tailr[95389:a0f] End of controller toggle: 0 The log messages are the same every time I click the button. Can anyone please help me out? I'm kind of running out of ideas on my end. Thanks in advance, and sorry for the data overload; just

Trying to intentionally create a memory leak

2008-03-07 Thread Jake
I am trying to create a simple Cocoa app that has an intentional memory leak so that I can play with the development tools Instruments, MallocDebug and leaks to learn how to detect memory leaks. I have a Cocoa console application that has code that I was sure would leak - [NSNumber alloc] with

Re:

2016-01-19 Thread Jake Petroules
signed char in the legacy (32-bit OS X) runtime, and a typedef for bool in the modern (64-bit OS X, iOS, tvOS, watchOS) runtime. You should use `return !!ok` or `return ok != NO` to force boolean coercion. -- Jake Petroules - jake.petroules at petroules.com ___

Re: LGPL code in the Mac App Store?

2016-01-26 Thread Jake Petroules
to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > https://lists.apple.com/mailman/options/cocoa-dev/jake.petroules%40petroules.com > > This email sent to jak

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-09 Thread Jake Petroules
ubscribe/Update your Subscription: > https://lists.apple.com/mailman/options/cocoa-dev/jake.petroules%40petroules.com > > This email sent to jake.petrou...@petroules.com -- Jake Petroules - jake.petroules at petroules.com ___ Cocoa-dev mailing list (

Dependency tracking with asset catalog and interface builder compilers

2015-07-12 Thread Jake Petroules
s and Storyboards) -- and ibtool also needs a "com.apple.ibtool.compilation-results" listing in its output. Thanks! -- Jake Petroules - jake.petroules at petroules.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do n

Fwd: Trying to understand -- please help...

2008-05-21 Thread Jake Carter
Sorry, forgot to cc the group on this. :// Jake -- Forwarded message -- From: Jake Carter <[EMAIL PROTECTED]> Date: Wed, May 21, 2008 at 9:14 AM Subject: Re: Trying to understand -- please help... To: john darnell <[EMAIL PROTECTED]> Ok, I'm somewhat of a beg

NSTextField won't fade

2008-09-03 Thread Jake Smith
I'm trying to have an NSTextField fade in and then out over several seconds. I've tried sequential animations, linked animations, and finally the method reproduced below. All produce the same result: the text in the NSTextField appears immediately, remains visible for the duration of the animation,

NSPredicate and Arrays

2008-03-31 Thread Jake Carter
to look for the baz. I hope this make sense. Any help would be great. Thanks, :// Jake ___ 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-admi

Re: Obj-C idioms for list based tasks

2008-04-07 Thread Jake Carter
.apple.com/documentation/Cocoa/Conceptual/Predicates/predicates.html :// Jake On Apr 7, 2008, at 8:44 AM, William Turner wrote: On Apr 7, 2008, at 5:33 AM, Paul Sargent wrote: Can anybody suggest a good way to: 1) Given an ordered set of objects, create a new non-mutable ordered set, with all the

KVO and Object Arrays

2008-04-19 Thread Jake Carter
tree of objects and their properties? Thanks for any help, :// Jake ___ 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-admins(at

Re: KVO and Object Arrays

2008-04-20 Thread Jake Carter
Murph, Thanks for the info. This is a really great place for me to start. :// Jake On Apr 20, 2008, at 8:56 AM, Sean Murphy wrote: On Apr 20, 2008, at 1:13 AM, Jake Carter wrote: So the AppDelegate will contain an array of Foo object and each Foo object will have an array of Bar objects

Re: @property (readonly, retain) ???

2008-05-06 Thread Jake Carter
onceptual/ObjectiveC/Articles/chapter_5_section_3.html#/ /apple_ref/doc/uid/TP30001163-CH17-SW2 :// Jake On May 6, 2008, at 2:14 PM, Optical Ali wrote: Hi, What does it mean to to have both readonly and retain in property declaration? My understanding is that reta