Wil Shipley

768
reputation
1138 views

Registered User

name Wil Shipley
member for 1 year
seen Dec 2 at 0:14
website
location San Francisco, US
age 40
I write code, kittens are fuzzy, blah blah blah you know the drill.
Oct
26
comment Declaring an object at class level, problems. iPhone Objective-C
You should probably post some example code.
Oct
26
answered How Should an OS X Drawing Programs Store Custom Data in its PDF PasteBoard Flavor?
Oct
26
comment OS API allocates members in struct. Free just the struct or every member first?
Might want to tag this baby with C++, too.
Oct
26
answered Declaring an object at class level, problems. iPhone Objective-C
Oct
26
awarded  Critic
Oct
26
comment Auto-save with Cocoa and Core Data
I manually processPendingChanges and save at certain choke points in my code, since processPendingChanges is needed to update the UI when I add or remove and object anyhow.
Oct
24
awarded  Yearling
Oct
21
comment [Objective-C/Cocoa] NSCollectionView issues
How do you modify the mutable array in the delegate? Can you post the code?
Oct
21
answered Building OSX App Bundle
Oct
21
comment Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request
No, haven't tried on iPhone.
Oct
14
accepted Secure password storage for a launchd daemon
Oct
3
accepted Auto-save with Cocoa and Core Data
Oct
3
answered How can I add the alpha channel of image A to the alpha channel of image B?
Oct
3
awarded  Commentator
Oct
3
comment Localizing a modern xib-based Mac application
[I'll probably worry about it if I ever get any Hebrew or Arabic localizations -- sadly the hot Israeli girl I was dating dumped me.]
Oct
3
comment Localizing a modern xib-based Mac application
That's a good point... I kind of wonder what they do for checkboxes anyhow. One thing you could do is resize text boxes to be smaller if needed when the NIB loads and the localization doesn't require the whole space -- I started work on this but never finished it.
Oct
3
comment Auto-save with Cocoa and Core Data
I decided to try saving immediately instead of after a delay, because I am running in multiple threads at once and when, for instance, you create a cover in the main thread, you REALLY want the background graphic threads' managedObjectContexts to see the cover immediately, not in three seconds when you auto-save.
Oct
3
comment Secure password storage for a launchd daemon
You can use the open keychain function (don't know it offhand) and just pass in the path to the system keychain. Done and done.
Oct
3
comment How to see what label color is on a file/folder from within Termnal (Mac OS X)
I have no idea, I just started playing with it and this is what I discovered.
Oct
3
accepted How to see what label color is on a file/folder from within Termnal (Mac OS X)
Oct
2
comment Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request
I'm not talking about debug frameworks. I'm saying, set an environment variable or a default to trigger extra logging in the normal CoreData framework.
Oct
2
answered How to see what label color is on a file/folder from within Termnal (Mac OS X)
Oct
2
answered Secure password storage for a launchd daemon
Oct
2
answered Auto-save with Cocoa and Core Data
Oct
2
answered Localizing a modern xib-based Mac application
Oct
2
answered How can I erase the current line printed on console in C ? I am working on a linux system
Sep
26
accepted Why does the dialog I created in Leopard look terrible in Tiger?
Sep
26
answered Why does the dialog I created in Leopard look terrible in Tiger?
Sep
22
accepted How to remove CoreData’s objects from memory?
Sep
20
accepted App crashes whenever accessing NSManagedObjects in a certain method
Sep
20
awarded  Nice Answer
Sep
20
comment App crashes whenever accessing NSManagedObjects in a certain method
Run Instruments on your program, in Zombies mode. This should point you to what's going wrong, and also functions as a great tutorial on the whole retain/release/autorelease mess. One thing to remember is that usually where you crash with a memory bug isn't where the bug is - you crash when you access something that got released earlier, and often elsewhere.
Sep
20
answered NSURLDownload delegate methods on a separate thread
Sep
20
answered Does CoreData on iPhone support IN predicates?
Sep
20
comment Being informed when a zoomToRect: animation completes
Are you calling zoomToRect:.... with the exact same rect that's currently showing, or are you saying that you're zooming in on a different rect, but at the same scale?
Sep
20
answered How to test whether application handles slow/flaky filesystems properly?
Sep
20
awarded  Autobiographer
Sep
20
comment App crashes whenever accessing NSManagedObjects in a certain method
I don't ever use -mutableCopy, as I just don't trust it. One reason is that I can hardly ever remember if 'mutableCopy' is deep or not (it shouldn't be), and if I can't remember, how can I expect other people reading my code to remember? Another is because if it WERE optimized in this way, then using it to make fast-enumeration safe (because I'm modifying the base array) would still be unsafe. Also, if the base array was a wonky NSArray subclass, now I know it's just a normal one.
Sep
20
answered How to maintain the scroll position in NSScrollView when changing scale?
Sep
20
answered Xcode 3.2 documentation, missing symbol definitions like CGPoint?
Sep
20
answered Need help with many-to-many relationships in core data for iPhone
Sep
20
answered core data or sqlite or plist files
Sep
20
answered How to remove CoreData’s objects from memory?
Sep
20
answered Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request
Sep
20
answered App crashes whenever accessing NSManagedObjects in a certain method
Aug
26
awarded  Supporter
Aug
26
comment understanding methods in objective-c
dataSoure -> dataSource