User Wil Shipley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:19:12Zhttp://stackoverflow.com/feeds/user/30602http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1563334/how-should-an-os-x-drawing-programs-store-custom-data-in-its-pdf-pasteboard-flavo/1623745#16237451Answer by Wil Shipley for How Should an OS X Drawing Programs Store Custom Data in its PDF PasteBoard Flavor?Wil Shipley2009-10-26T08:55:31Z2009-10-26T08:55:31Z<p>Another hack would be to use the PDFKit to add annotations with your extra data in them -- I'm not sure if those would be copied/pasted correctly by target programs, but it's worth a try.</p>
<p><a href="http://developer.apple.com/mac/library/documentation/GraphicsImaging/Reference/QuartzFramework/Classes/PDFAnnotation%5FClass/Reference/Reference.html" rel="nofollow" title="Reference">Reference</a></p>
<p><a href="http://developer.apple.com/mac/library/samplecode/PDFAnnotationEditor/index.html#//apple%5Fref/doc/uid/DTS10004035" rel="nofollow">Example Code</a></p>
<p>-W</p>
http://stackoverflow.com/questions/1623666/declaring-an-object-at-class-level-problems-iphone-objective-c/1623688#16236882Answer by Wil Shipley for Declaring an object at class level, problems. iPhone Objective-CWil Shipley2009-10-26T08:41:00Z2009-10-26T08:41:00Z<p>Don't create socket in +initailize, that's way early.</p>
<p>Add some debug logging (NSLog()) to your code in viewDidLoad, and log the socket to see if it's getting created. Then put a breakpoint on it in gdb, and see if it's valid.</p>
<p>-W</p>
http://stackoverflow.com/questions/1596945/building-osx-app-bundle/1600074#16000741Answer by Wil Shipley for Building OSX App BundleWil Shipley2009-10-21T10:52:32Z2009-10-21T10:52:32Z<p>There's really nothing magic about the bundle - just read Apple's documentation on it, and mimic it. At the base, you need an Info.plist, the Contents/MacOS/binary, and an icon.</p>
http://stackoverflow.com/questions/1494999/localizing-a-modern-xib-based-mac-application/1508612#15086128Answer by Wil Shipley for Localizing a modern xib-based Mac applicationWil Shipley2009-10-02T09:38:57Z2009-10-13T22:49:25Z<p>I strongly strongly STRONGLY recommend against frame changes in localizations. I know this runs counter to Apple's advice, but there are SO MANY problems with allowing frame changes - you end up with a billion edge cases.</p>
<p>Imagine you have 10 XIBs in your app, and you support 12 languages. You've got 120 different layouts to support, now. You just can't do this.</p>
<p>Change the strings, leave the views where they are. Make 'em bigger in ALL languages, if you need to. It sounds like this shouldn't work but it does. (I won three Apple Design Awards with an app that's localized in 10 or so languages this way.)</p>
<p>Specifics:</p>
<ul>
<li><p>For radio and checkboxes, just let them extend far to the right, beyond the last English character. That also provides a nice big landing area for imprecise mousers.</p></li>
<li><p>For buttons, they should be wide anyhow, because it never looks good to have text cramped in the middle of the buttons.</p></li>
<li><p>For titles on tableview columns, you should autosize when you load 'em up, if needed.</p></li>
<li><p>For explanatory text, you should have some extra space to the right, and maybe an extra line. It just makes the English version of the XIB seem less cluttered. Sure, the Germans are going to see a slightly tighter XIB, but, hey, they're Germans -- they're probably used to that. There's probably even a German word for it. "Deutscheninterfakkenclutterlongen."</p></li>
<li><p>If a text field is centered, just add equal space on both sides. There's no reason not to.</p></li>
</ul>
<p>I've combined this with scripts that suck all the strings out of my XIBs and put them in .strings files, and then dynamically put the strings back at run-time, so anyone can localize my app without any special tools. Just drop in a bunch of .strings files and run it!</p>
<p>-Wil Shipley</p>
http://stackoverflow.com/questions/1130898/how-can-i-add-the-alpha-channel-of-image-a-to-the-alpha-channel-of-image-b/1512881#15128811Answer by Wil Shipley for How can I add the alpha channel of image A to the alpha channel of image B?Wil Shipley2009-10-03T05:23:15Z2009-10-03T05:23:15Z<p>"clemahieu" is right -- You don't have to worry about premultiplied alpha in this case, because you're doing high-level operations, and the actual pixel format is a low-level detail.</p>
<p>If you simply composite the white/alpha image over the color/no alpha image (in a color/alpha buffer) using the correct compositing operator, you'll get exactly what you want.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1464641/how-to-see-what-label-color-is-on-a-file-folder-from-within-termnal-mac-os-x/1508735#15087351Answer by Wil Shipley for How to see what label color is on a file/folder from within Termnal (Mac OS X)Wil Shipley2009-10-02T10:15:24Z2009-10-02T10:15:24Z<p>Using xattr... for instance, I have a directory named "Foo", and I made its label red in the Finder. Then I did:</p>
<pre><code>wilPureSex% xattr -p com.apple.FinderInfo Foo
00 00 00 00 00 00 00 00 00 0C 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
</code></pre>
<p>Then I made it blue, and you can see the relevant byte change:</p>
<pre><code>wilPureSex% xattr -p com.apple.FinderInfo Foo
00 00 00 00 00 00 00 00 00 08 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
</code></pre>
<p>-Wil</p>
http://stackoverflow.com/questions/1490501/secure-password-storage-for-a-launchd-daemon/1508660#15086602Answer by Wil Shipley for Secure password storage for a launchd daemonWil Shipley2009-10-02T09:52:58Z2009-10-02T09:52:58Z<p>You can create your own Keychains and use them willy-nilly. For example, you could have one inside your app bundle, if you have an app bundle.</p>
<p>Or you could run the daemon as a particular user (the guy who installed it) and put the key in his keychain, then just reach into his home folder when you need it.</p>
<p>Or you could run the daemon as root and put your key in the System keychain.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1500327/auto-save-with-cocoa-and-core-data/1508643#15086434Answer by Wil Shipley for Auto-save with Cocoa and Core DataWil Shipley2009-10-02T09:45:43Z2009-10-02T09:45:43Z<p>At the end of each event in an AppKit app, CoreData will run a -processPendingTransactions for you.</p>
<p>One side-effect of this is that if you've registered with your NSManagedObjectContext to receive change notifications, you'll get called at the end of each event.</p>
<p>So, for instance, in your notification handler, you could call just tell the context to save.</p>
<p>However, you might be paranoid about doing a save on a context while in a callback from that same context, so you'd probably feel better if you did a performSelector:@selector(save:) afterDelay: to push the save until after the -processPendingTransactions is done.</p>
<p>You could even do a cancel previous on the -save: selector and have the delay be like 5 seconds, so if the user or app is in the middle of a BUNCH of changes they'll all coalesce into a single save.</p>
<p>And, in fact, that's exactly how Delicious Library 1.0-1.09 worked.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1508490/how-can-i-erase-the-current-line-printed-on-console-in-c-i-am-working-on-a-linu/1508567#15085671Answer by Wil Shipley for How can I erase the current line printed on console in C ? I am working on a linux systemWil Shipley2009-10-02T09:28:40Z2009-10-02T09:28:40Z<p>When I was a mere lad, we had a library called "curses" that let you draw all over the screen with characters, because we hadn't invented graphics yet.</p>
<p>I think it had to go into full-screen mode first, but that restriction may have since been lifted. Also, it might not be called 'curses' on Linux.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/789906/why-does-the-dialog-i-created-in-leopard-look-terrible-in-tiger/1480955#14809552Answer by Wil Shipley for Why does the dialog I created in Leopard look terrible in Tiger?Wil Shipley2009-09-26T10:32:39Z2009-09-26T10:32:39Z<p>If I recall correctly, under Tiger you had to set the background pattern of the window if you wanted to change its color - the 'color' was overridden by the (ugly) default aqua pattern.</p>
<p>On the other hand, why the heck are you writing code for Tiger? Something like 0.3% of machines out there run Tiger, and something like 100% of those are run by luddites.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1395769/nsurldownload-delegate-methods-on-a-separate-thread/1450646#14506461Answer by Wil Shipley for NSURLDownload delegate methods on a separate threadWil Shipley2009-09-20T09:14:33Z2009-09-20T09:14:33Z<p>My first question is, what are you using NSURLDownload to do? Are you just downloading a bunch of files to the disk, or do you really want the data in memory?</p>
<ul>
<li><p>If you're downloading a bunch of files to the disk and you don't want to do any special processing, I'd first try just firing off all the NSURLDownloads on the main thread, without bothering with an NSOperationQueue... I mean, how many operations are we talking about? Can they all run concurrently? The callbacks on the main thread shouldn't be too much of a problem, unless you are doing something heavyweight when you get notified you got some data, in which case it seems like...</p></li>
<li><p>Otherwise, I'd switch to using NSURLConnection. It's specifically documented to call you back on the thread you set it up on, and is more flexible. Of course, it's not as high-level, so if you really want files saved to disk, you're going to have to write the I/O yourself. Shouldn't be a huge hardship - it's like four extra lines of code.</p></li>
</ul>
<p>-W</p>
http://stackoverflow.com/questions/1436032/does-coredata-on-iphone-support-in-predicates/1450620#14506205Answer by Wil Shipley for Does CoreData on iPhone support IN predicates?Wil Shipley2009-09-20T08:58:24Z2009-09-20T08:58:24Z<p>I believe Alex is right that you have to use an NSArray, although obviously it'd be nicer if NSSet were accepted here, since order isn't that important (although it could conceivably affect how quickly the SQL can run).</p>
<p>As a side note, I never use the +predicateWithFormat: call in any code, ever, because it can't do compile-time sanity or type-checking. I highly advise using the individual classes.</p>
<p>In this case, I'd do:</p>
<pre><code>fetchRequest.entity = [NSEntityDescription entityForName:@"myRecord" inManagedObjectContext:self.managedObjectContext]];
NSArray *shipTypes = [NSArray arrayWithObjects:[NSNumber numberWithInt:70],
[NSNumber numberWithInt:71],
[NSNumber numberWithInt:72],
[NSNumber numberWithInt:73],
[NSNumber numberWithInt:74],
nil];
fetchRequest.predicate = [NSComparisonPredicate predicateWithLeftExpression:[NSExpression expressionForKeyPath:@"type"] rightExpression:[NSExpression expressionForConstantValue:shipTypes] modifier:NSDirectPredicateModifier type:NSInPredicateOperatorType options:0];
theRecords = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
</code></pre>
<p>Not that this would have caught this particular error at compile time, but it WOULD have potentially caught it at the NSExpression level, thus making it much clearer what went wrong.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1408320/how-to-test-whether-application-handles-slow-flaky-filesystems-properly/1450597#14505971Answer by Wil Shipley for How to test whether application handles slow/flaky filesystems properly?Wil Shipley2009-09-20T08:36:32Z2009-09-20T08:36:32Z<p>Maybe buy a slow thumb drive? I've found some at Best Buy that were glacial. Plug them in through several USB hubs and maybe a keyboard, as well, so they'll be on a very pokey connection.</p>
<p>-W</p>
http://stackoverflow.com/questions/1296920/how-to-maintain-the-scroll-position-in-nsscrollview-when-changing-scale/1450206#14502062Answer by Wil Shipley for How to maintain the scroll position in NSScrollView when changing scale?Wil Shipley2009-09-20T03:17:38Z2009-09-20T03:17:38Z<p>Keeping the same scroll position after scaling isn't easy. One thing you need to decide is what you mean by "the same" - do you want the top, middle, or bottom of the visible area before scaling to stay in place after scaling?</p>
<p>Or, more intuitively, do you want the position that stays in place a percentage down the visible rect equal to the percentage that you are scrolled down the document when you start (eg, so the center of the scroller's thumb doesn't move up or down during a scale, the thumb just grows or shrinks).</p>
<p>If you want the latter effect, one way to do it is get the NSScrollView's verticalScroller and horizontalScroller, and then read their 'floatValue's. These are normalized from 0 to 1, where '0' means you're at the top of the document and 1 means you're at the end. The nice thing about asking the scroller for this is that if the document is shorter than the NSScrollView, the scroller still returns a sane answer in all cases for 'floatValue,' so you don't have to special-case this.</p>
<p>After you resize, set the NSScrollView's scroll position to be the same percentage it was before the scale - but, sadly, here's where I wave my hands a little bit. I haven't done this in a while in my code, but as I recall you can't just set the NSScrollers' 'floatValue's directly - they'll LOOK scrolled, but they won't actually affect the NSScrollView.</p>
<p>So, you'll have to write some math to calculate the new top-left point in your document based on the percentage you want to be through it - on the y axis, for instance, it'll look like, "If the document is now shorter than the scrollView's contentView, scroll to point 0, otherwise scroll to a point that's ((height of contentView - height of documentView) * oldVerticalPercentage) down the document." X axis is of course similar.</p>
<p>Also, I'm almost positive you don't need a call to -display here, and in general shouldn't ever call it, ever. (-setNeedsDisplay: at most.)</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1449549/xcode-3-2-documentation-missing-symbol-definitions-like-cgpoint/1450147#14501471Answer by Wil Shipley for Xcode 3.2 documentation, missing symbol definitions like CGPoint?Wil Shipley2009-09-20T02:43:41Z2009-09-20T02:43:41Z<p>If you're option-clicking I believe only symbols in the frameworks you are linking to in your current Xcode project are looked-up. Is your current project linked against AppKit and/or CoreGraphics?</p>
<p>-W</p>
http://stackoverflow.com/questions/1449523/need-help-with-many-to-many-relationships-in-core-data-for-iphone/1450137#14501371Answer by Wil Shipley for Need help with many-to-many relationships in core data for iPhoneWil Shipley2009-09-20T02:32:30Z2009-09-20T02:32:30Z<p>If you want to call a method like "-addCatagoryObject:" on your NSManagedObject subclass, you have to have the code for that method in your actual .m file - it is NOT generated at runtime.</p>
<p>HOWEVER, it can be generated for you semi-automatically by Xcode - look for the various menu items that allow you to copy method definitions and implementations in Xcode.</p>
<p>Most people skip these nowadays, you don't NEED to call -addCategoryObject:, you can just let the runtime generate accessor code for you.</p>
<p>First off, your variable name (in the header and in your model) should be "categories", not "category", since it's representing a set, not a singleton.</p>
<p>You can then set categories to any set you want, using something like:</p>
<pre><code>restaurant.categories = [NSSet setWithObjects:category1, category2, nil];
</code></pre>
http://stackoverflow.com/questions/1377599/core-data-or-sqlite-or-plist-files/1450095#14500955Answer by Wil Shipley for core data or sqlite or plist filesWil Shipley2009-09-20T02:07:11Z2009-09-20T02:07:11Z<p>Since you can't control the internal keys in CoreData, and because CoreData requires a VERY specific schema to work at all, AND you don't want to mess with CoreData's SQL directly (it has all kinds of flags on each row that aren't docuemnted), you'll want to have a different database schema on the server from the iPhone.</p>
<p>For the unique ID, you'll want to just add your own column to CoreData, and make sure you throw an index on it.</p>
<p>If you're going to be generating new rows on both the iPhone AND the web server, you'll want to use some scheme to ensure the keys are unique on both - the easiest one would be to generate a UUID using CFUIIDCreate() and related functions, and store that in your table as a string.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1366144/how-to-remove-coredatas-objects-from-memory/1450078#14500783Answer by Wil Shipley for How to remove CoreData's objects from memory?Wil Shipley2009-09-20T01:56:05Z2009-09-20T01:56:05Z<p>You can tell the managedObjectContext to retain or not retain objects (in addition to the ones you retain) with:</p>
<pre><code>[managedObjectContext setRetainsRegisteredObjects:YES];
</code></pre>
<p>See <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CoreData/index.html?http%3A//developer.apple.com/documentation/Cocoa/Conceptual/CoreData/Articles/cdRelationships.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/CoreData/index.html?http%3A//developer.apple.com/documentation/Cocoa/Conceptual/CoreData/Articles/cdRelationships.html</a> for a discussion of what this does.</p>
<p>Note that you also have to be careful not to retain and leak the objects yourself, or this will have no effect.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1164674/coredata-on-iphone-setfetchbatchsize-setpropertiestofetch-in-one-request/1450066#14500660Answer by Wil Shipley for Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request Wil Shipley2009-09-20T01:50:54Z2009-09-20T01:50:54Z<p>Looks a lot like you found a bug in CoreData. You can verify for sure by turning on SQL logging - I'm guessing turning on both options generates slightly invalid SQL.</p>
<p>The option you want to use is "com.apple.CoreData.SQLDebug 1" - you can specify this from the command-line, or set the default on your program.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1449897/app-crashes-whenever-accessing-nsmanagedobjects-in-a-certain-method/1450053#145005312Answer by Wil Shipley for App crashes whenever accessing NSManagedObjects in a certain methodWil Shipley2009-09-20T01:40:08Z2009-09-20T01:40:08Z<p>The following code is shorter, more efficient, easier to read, and doesn't have the six or so memory leaks of your first block:</p>
<pre><code>NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:[NSEntityDescription entityForName:@"Dream" inManagedObjectContext:[self managedObjectContext]]];
static NSArray *sortDescriptors = nil;
if (!sortDescriptors)
sortDescriptors = [[NSArray alloc] initWithObject:[[[NSSortDescriptor alloc] initWithKey:@"title" ascending:NO] autorelease]];
[request setSortDescriptors:sortDescriptors];
NSError *error = nil;
NSArray *fetchResults = [managedObjectContext executeFetchRequest:request error:&error];
if (!fetchResults)
NSLog(@"oh noes! no fetch results DreamsTabController:45, error %@", error);
[request release];
dreamsArray = [NSMutableArray arrayWithArray:fetchResults];
</code></pre>
<p>This method is rewritten to be smaller and not over-release dream, which results in crashers:</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
static NSString *cellID = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID] ? : [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID] autorelease];
Dream *dream = [dreamsArray objectAtIndex:indexPath.row];
cell.textLabel.text = dream.title;
cell.detailTextLabel.text = @"foo!";
return cell;
}
</code></pre>
<p>This method had an over-release of 'dream' and a leak on an NSArray and thus a 'dream' instance, as well.</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
{
EditDreamController *editDreamController = [[EditDreamController alloc] initWithNibName:@"EditDream" bundle:nil];
Dream *dream = [dreamsArray objectAtIndex:indexPath.row];
editDreamController.dream = [NSArray arrayWithObjects:dream.dreamContent];
[navigationController pushViewController:editDreamController animated:YES];
[editDreamController release];
}
</code></pre>
<p>It's not clear whey the instance variable on EditDreamController is singular when it takes an array - it should be 'dreams' if you really can set more than one of them.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/61838/do-i-need-to-release-xib-resources/567962#5679622Answer by Wil Shipley for Do I need to release xib resources?Wil Shipley2009-02-20T01:26:52Z2009-02-20T01:26:52Z<p>The </p>
<pre><code>[anOutlet release], anOutlet = nil;
</code></pre>
<p>Part is completely superfluous if you've written setView: correctly.</p>
http://stackoverflow.com/questions/186077/how-do-i-create-a-sparse-file-programmatically-in-c-on-mac-os-x/237172#2371721Answer by Wil Shipley for How do I create a sparse file programmatically, in C, on Mac OS X?Wil Shipley2008-10-25T23:08:16Z2008-10-25T23:08:16Z<p>I think it'd be helpful to know WHY you want sparse files.</p>
http://stackoverflow.com/questions/202471/is-it-possible-to-design-nscell-subclasses-in-interface-builder/237171#2371714Answer by Wil Shipley for Is it possible to design NSCell subclasses in Interface Builder?Wil Shipley2008-10-25T23:06:33Z2008-10-25T23:06:33Z<p>As Ken says, NSCells and NSViews are different, and you can only lay out NSView hierarchies in NIB, not NSCells (which don't have any explicit hierarchy).</p>
<p>On the other hand, there's nothing preventing you from having a hierarchy of NSViews and using that to draw your NSCell -- you could add them as a subview of your cell's parent view, tell them to display, and remove them from the window and nobody would be the wiser.</p>
<p>In this case, using a NIB would work. Although, it seems like a ton of hassle. Typically I've just replaced the object that takes NSCells with a custom one that takes my NSViews, but that means writing your own mouse-handling code, which is very touchy.</p>
<p>On the other hand, my approach lets you bind the views' values in NIB, so you don't have to do any extra work, which is cool.</p>
<p>-Wil</p>
http://stackoverflow.com/questions/227797/can-you-detect-a-ctrl-click-context-menu-request-in-the-mousedown-event/237156#2371563Answer by Wil Shipley for Can you detect a ctrl-click (context menu) request in the mouseDown event?Wil Shipley2008-10-25T22:55:51Z2008-10-25T22:55:51Z<p>In general, -rightMouseDown: should get called automatically, but I've seen situations where it isn't -- these may be patched in Leopard.</p>
<p>But right now, in -mouseDown: I check whether the control key is down, using this code:</p>
<pre><code>- (void)mouseDown:(NSEvent *)event;
{
if (event.modifierFlags & NSControlKeyMask)
return [self rightMouseDown:event];
...
}
</code></pre>
<p>-Wil</p>
http://stackoverflow.com/questions/149646/best-way-to-make-nsrunloop-wait-for-a-flag-to-be-set/237152#2371524Answer by Wil Shipley for Best way to make NSRunLoop wait for a flag to be set?Wil Shipley2008-10-25T22:52:19Z2008-10-25T22:52:19Z<p>In general, if you are processing events yourself in a loop, you're Doing It Wrong. It can cause a ton of messy problems, in my experience.</p>
<p>If you want to run modally -- for example, showing a progress panel -- run modally! Go ahead and use the NSApplication methods, run modally for the progress sheet, then stop the modal when the load is done. See the Apple documentation, for example <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/WinPanel/Concepts/UsingModalWindows.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/WinPanel/Concepts/UsingModalWindows.html</a> .</p>
<p>If you just want a view to be up for the duration of your load, but you don't want it to be modal (eg, you want other views to be able to respond to events), then you should do something much simpler. For instance, you could do this:</p>
<pre><code>- (IBAction)start:(id)sender
{
pageStillLoading = YES;
[NSThread detachNewThreadSelector:@selector(runInBackground:) toTarget:self withObject:nil];
[progress setHidden:NO];
}
- (void)wakeUpMainThreadRunloop:(id)arg
{
[progress setHidden:YES];
}
</code></pre>
<p>And you're done. No need to keep control of the run loop!</p>
<p>-Wil</p>
http://stackoverflow.com/questions/233621/os-x-file-duplication-converts-text-encoding-by-default/237026#2370260Answer by Wil Shipley for OS X file duplication converts text encoding by defaultWil Shipley2008-10-25T21:21:28Z2008-10-25T21:21:28Z<p>Are you using the Finder to copy your files, or some other tool (an IDE)?</p>
<p>It's possible your original file has some extended Finder metadata in its Resource Fork that's being lost in the copying, if you don't use Finder to copy it.</p>
<p>-W</p>
http://stackoverflow.com/questions/219623/device-information-from-nsevent-cgevent/228154#2281543Answer by Wil Shipley for Device Information from NSEvent/CGEventWil Shipley2008-10-23T01:12:06Z2008-10-23T01:12:06Z<p>DDHidLib is neat, and in fact I rewrote parts of it for Delicious Library 2 for Leopard's newer HID APIs, and submitted the changes back to the original author -- if you write him you can get the Leopard-only sample code.</p>
<p>Unfortunately, the new Leopard HID APIs have the ability to peak at keyboard events as they pass by, but NOT to intercept them, so you can't build your own application-level device handler unless it's OK that the key events are also going to the AppKit, as well. (This is why there's a BONKING noise when you use a USB barcode scanner in Delicious Library 2 - I peak at the scanner and read the barcode, but then the typing is still sent to the topmost window, which doesn't want it, and beeps a lot. Sigh.)</p>
<p>-Wil</p>
http://stackoverflow.com/questions/1623666/declaring-an-object-at-class-level-problems-iphone-objective-c/1623688#1623688Comment by Wil Shipley on Declaring an object at class level, problems. iPhone Objective-CWil Shipley2009-10-26T09:00:23Z2009-10-26T09:00:23ZYou should probably post some example code.http://stackoverflow.com/questions/1623687/os-api-allocates-members-in-struct-free-just-the-struct-or-every-member-firstComment by Wil Shipley on OS API allocates members in struct. Free just the struct or every member first?Wil Shipley2009-10-26T08:41:49Z2009-10-26T08:41:49ZMight want to tag this baby with C++, too.http://stackoverflow.com/questions/1500327/auto-save-with-cocoa-and-core-data/1508643#1508643Comment by Wil Shipley on Auto-save with Cocoa and Core DataWil Shipley2009-10-26T08:28:03Z2009-10-26T08:28:03ZI 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.http://stackoverflow.com/questions/1598086/objective-c-cocoa-nscollectionview-issuesComment by Wil Shipley on [Objective-C/Cocoa] NSCollectionView issuesWil Shipley2009-10-21T11:02:56Z2009-10-21T11:02:56ZHow do you modify the mutable array in the delegate? Can you post the code?http://stackoverflow.com/questions/1164674/coredata-on-iphone-setfetchbatchsize-setpropertiestofetch-in-one-request/1450066#1450066Comment by Wil Shipley on Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request Wil Shipley2009-10-21T10:50:46Z2009-10-21T10:50:46ZNo, haven't tried on iPhone.http://stackoverflow.com/questions/1494999/localizing-a-modern-xib-based-mac-application/1508612#1508612Comment by Wil Shipley on Localizing a modern xib-based Mac applicationWil Shipley2009-10-03T05:16:05Z2009-10-03T05:16:05Z[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.]http://stackoverflow.com/questions/1494999/localizing-a-modern-xib-based-mac-application/1508612#1508612Comment by Wil Shipley on Localizing a modern xib-based Mac applicationWil Shipley2009-10-03T05:15:32Z2009-10-03T05:15:32ZThat'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 <i>smaller</i> if needed when the NIB loads and the localization doesn't require the whole space -- I started work on this but never finished it. http://stackoverflow.com/questions/1500327/auto-save-with-cocoa-and-core-data/1508643#1508643Comment by Wil Shipley on Auto-save with Cocoa and Core DataWil Shipley2009-10-03T05:13:41Z2009-10-03T05:13:41ZI 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.http://stackoverflow.com/questions/1490501/secure-password-storage-for-a-launchd-daemon/1508660#1508660Comment by Wil Shipley on Secure password storage for a launchd daemonWil Shipley2009-10-03T05:12:28Z2009-10-03T05:12:28ZYou can use the open keychain function (don't know it offhand) and just pass in the path to the system keychain. Done and done.http://stackoverflow.com/questions/1464641/how-to-see-what-label-color-is-on-a-file-folder-from-within-termnal-mac-os-x/1508735#1508735Comment by Wil Shipley on How to see what label color is on a file/folder from within Termnal (Mac OS X)Wil Shipley2009-10-03T05:11:50Z2009-10-03T05:11:50ZI have no idea, I just started playing with it and this is what I discovered.http://stackoverflow.com/questions/1164674/coredata-on-iphone-setfetchbatchsize-setpropertiestofetch-in-one-request/1450066#1450066Comment by Wil Shipley on Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request Wil Shipley2009-10-02T10:17:25Z2009-10-02T10:17:25ZI'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.http://stackoverflow.com/questions/1449897/app-crashes-whenever-accessing-nsmanagedobjects-in-a-certain-method/1450053#1450053Comment by Wil Shipley on App crashes whenever accessing NSManagedObjects in a certain methodWil Shipley2009-09-20T09:25:53Z2009-09-20T09:25:53ZRun 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.http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completesComment by Wil Shipley on Being informed when a zoomToRect: animation completesWil Shipley2009-09-20T08:38:22Z2009-09-20T08:38:22ZAre you calling zoomToRect:.... with the exact same rect that's currently showing, or are you saying that you're zooming in on a <i>different</i> rect, but at the same scale?http://stackoverflow.com/questions/1449897/app-crashes-whenever-accessing-nsmanagedobjects-in-a-certain-method/1450053#1450053Comment by Wil Shipley on App crashes whenever accessing NSManagedObjects in a certain methodWil Shipley2009-09-20T03:22:45Z2009-09-20T03:22:45ZI 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>I</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.http://stackoverflow.com/questions/1327724/understanding-methods-in-objective-c/1330027#1330027Comment by Wil Shipley on understanding methods in objective-cWil Shipley2009-08-26T08:19:21Z2009-08-26T08:19:21ZdataSoure -> dataSource