User Boaz Stuller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:36:39Z http://stackoverflow.com/feeds/user/38676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1218527/nscolorwell-subclass-not-getting-mousemoved-events/1218898#1218898 2 Answer by Boaz Stuller for NSColorWell subclass not getting mouseMoved events Boaz Stuller 2009-08-02T13:30:21Z 2009-08-02T13:30:21Z <p>mouseEntered: and mouseExited: don't track entering/exiting your view directly; they track entering/exiting any tracking areas you've established in your view. The relevant methods are <code>-addTrackingRect:owner:userData:assumeInside:</code> and <code>-removeTrackingRect:</code>. Just pass <code>[self bounds]</code> for the first parameter if you want your whole view to be tracked. If your app is 10.5+ only, you should probably use NSTrackingArea instead as it directly supports getting mouse-moved events only inside the tracking area.</p> <p>Keep in mind that 1) tracking rects have the same somewhat odd behavior as cursor rects w/r/t rotated views, and 2) if your bounds change (not merely your frame) you'll probably need to re-establish your tracking rect, so save the tracking rect's tag to remove it later.</p> http://stackoverflow.com/questions/818560/drag-and-drop-files-onto-an-nstableview/818699#818699 6 Answer by Boaz Stuller for Drag-and-drop files onto an NSTableView? Boaz Stuller 2009-05-04T03:31:34Z 2009-06-07T20:28:09Z <p>NSTableView handles drag-and-drop differently from generic views, which is overall a good thing. It means that you don't have to manually handle the complicated highlighting, cell tracking and inserting behaviours that tables require.</p> <p>A description of what is required can be found <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/TableView/Tasks/UsingDragAndDrop.html" rel="nofollow">here</a>. Basically, you still call -registerDraggedTypes: (generally in your -awakeFromNib method) but instead of implementing the NSDraggingDestination methods, you implement the various data source methods associated with drag and drop, which can be found <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Protocols/NSTableDataSource%5FProtocol/Reference/Reference.html" rel="nofollow">here</a>. You should not need to subclass NSTableView to implement drag-and-drop in this fashion.</p> <p>Note those are data source methods. You need to hook the table view's dataSource outlet to the class that implements those methods in order for them to be called.</p> http://stackoverflow.com/questions/865269/how-do-i-fix-my-application-from-leaking-when-using-qt-4-5/865629#865629 6 Answer by Boaz Stuller for How do I fix my application from leaking when using Qt 4.5? Boaz Stuller 2009-05-14T20:39:26Z 2009-05-14T20:39:26Z <p>Generally, when you see this problem in your code, you bracket the offending code block with <code>NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];</code> before and <code>[pool release];</code> after. You can set a breakpoint on the <code>_NSAutoreleaseNoPool</code> function and just look up the stack crawl to see what the offending code is. Keep in mind that <code>-autorelease</code> is used everywhere in Cocoa, so it might not be a specific call to autorelease in Qt's code that's triggering it.</p> <p>However, since this is Qt's code that's doing this, and, last I checked, Qt/Cocoa was still very much a work in progress, you should probably just submit a bug report with the error and a stack crawl to them, and wait for them to fix it.</p> http://stackoverflow.com/questions/819552/what-should-i-replace-this-code-with/820654#820654 1 Answer by Boaz Stuller for What should I replace this code with? Boaz Stuller 2009-05-04T15:47:06Z 2009-05-04T15:47:06Z <p>Generally, you do not want to base the display of one cell on the value of another one. A more MVC-compliant approach is to have the checkbox control a property of that row's object (say, <code>isActive</code>), which you can then check against in your code above to decide how to draw the text. As long as the checkbox state and the text color are both based on the same property, they'll match up as you want.</p> <p>Also, the color you want is not <code>[NSColor lightGrayColor]</code>, but rather <code>[NSColor disabledControlTextColor]</code>. And usually, you just want to disable the whole cell, i.e <code>[aCell setEnabled:NO]</code> instead of just changing the text color, which makes it act like a disabled cell as well as look like one.</p> http://stackoverflow.com/questions/820563/how-do-you-sync-a-core-data-application-between-a-mac-and-a-iphone/820643#820643 1 Answer by Boaz Stuller for How do you sync a Core-Data application between a Mac and a iPhone? Boaz Stuller 2009-05-04T15:44:56Z 2009-05-04T15:44:56Z <p>Core Data does not exist on the iPhone, so you'll need to use something else for the iPhone portion at least. In fact, if you want to share a significant amount of code between the iPhone and Mac apps, you'll probably want to avoid Core Data altogether.</p> http://stackoverflow.com/questions/435685/how-to-make-a-transparent-nsview-subclass-handle-mouse-events/436153#436153 2 Answer by Boaz Stuller for How to make a transparent NSView subclass handle mouse events? Boaz Stuller 2009-01-12T17:09:21Z 2009-01-12T17:09:21Z <p>As far as I know, click events to transparent portions of windows aren't delivered to your application at all, so none of the normal event-chain overrides (i.e -hitTest:, -sendEvent:, etc) will work. The only way I can think of off the top of my head is to use Quartz Event Taps to capture all mouse clicks and then figure out if they're over a transparent area of your window manually. That, frankly, sounds like a huge PITA for not much gain.</p> http://stackoverflow.com/questions/404830/cocoa-wont-capture-shift-modifier/405654#405654 4 Answer by Boaz Stuller for Cocoa Won't Capture Shift Modifier? Boaz Stuller 2009-01-01T23:08:32Z 2009-01-01T23:08:32Z <p>First, -charactersIgnoringModifiers doesn't ignore the shift key, so you will still get shifted characters (i.e UPPERCASE and !%#$%^&amp;*) returned from it. What's probably happening in your function is: You press shift-w, your -isEqualTo: returns false because you're comparing a lowercase 'w' and an uppercase 'W', and so you return before getting to the shift-detection code at the bottom. The simplest solution is to just check for both.</p> <p>However, if you want, for example, Arabic keyboardists to be able to easily use your app, you really shouldn't hardcode characters that may not even appear on the user's keyboard. The value returned by -keyCode refers to a key's position on the keyboard, not the represented character. For starters, the constants beginning in 'kVK_ANSI_' and 'kVK_' in Events.h (you may have to link to Carbon.framework and #include &lt;Carbon/Carbon.h&gt; to use those constants) can be compared to what -keyCode returns, and they refer to the key positions a QWERTY-using USian expects. So you can be (pretty) sure that, regardless of keyboard layout, the keycodes for 'wasd' (kVK_ANSI_W, kVK_ANSI_A, etc.) will refer to that triangle in the top left of your user's keyboard.</p> http://stackoverflow.com/questions/380076/manual-core-data-schema-migration-without-document-changed-warning/381484#381484 1 Answer by Boaz Stuller for Manual Core Data schema migration without "document changed" warning? Boaz Stuller 2008-12-19T16:43:11Z 2008-12-24T20:15:51Z <p>I haven't run across this particular situation, but I have a few guesses. First, instead of using -removeItemAtPath: and -moveItemAtPath: when you want to switch files, use the FSExchangeObjects() function instead. NSDocument uses FSRefs to track the file and unless you use FSExchangeObjects(), it'll realize that it's looking at a completely different file.</p> <p>Second, you can manually set your document's managed object model by overriding -managedObjectModel, in particular using the +mergedModelFromBundles: method to load the models from your framework. According to the docs, it should by default merge any models in the main bundle and in all linked frameworks, so this should only be necessary for dynamically loaded bundles. Don't know why that's not working for you, but I haven't tried this. To figure out what bundles to search, NSBundle's +bundleForClass: method is your friend.</p> http://stackoverflow.com/questions/375583/why-does-my-nibs-window-close-immediately/375864#375864 3 Answer by Boaz Stuller for Why does my nib's window close immediately? Boaz Stuller 2008-12-17T20:13:27Z 2008-12-17T20:13:27Z <p>I'd guess your window is being deallocated (or if under GC, collected) right out from under you. There are about a million possible reasons for this (none of which we can diagnose from one line of code), but there mere fact you're using +loadNidNamed:owner: is a warning flag. The reason is that items instantiated in nibs follow the same memory management rules as the rest of Cocoa; if you want them to stick around, you have to retain them (or in GC, keep a reference to them). NSWindowController (and NSViewController too) has some special nib-handling code so that it retains all the top-level objects in its nib when it loads, so that they'll stick around as long as it does*. However, if you don't use that, you have to do all that manually.</p> <p>The real solution is: Don't use +loadNibNamed:owner:. Instead, create an NSWindowController subclass and set up its -init method like so:</p> <pre><code>@implementation AuthorizationWindowController - (id)init { self = [super initWithWindowNibName:@"AuthorizationWindow"]; if (self == nil) return nil; // any other initialization code return self; } </code></pre> <p>*It also has special code to handle bindings-induced retain cycles that would normally cause it to leak, which is quite a bit more difficult to write yourself. Yet one more reason to use NSWindowController.</p> http://stackoverflow.com/questions/374159/cocoa-one-row-table-view-or-a-horizontal-list-view/375612#375612 4 Answer by Boaz Stuller for Cocoa one row table view or a horizontal list view Boaz Stuller 2008-12-17T18:49:41Z 2008-12-17T18:49:41Z <p>If you're okay with Leopard-only, The new NSCollectionView supports horizontal display. Just set the collection view's number of rows to 1 in Interface Builder; it'll even handle the horizontal scroll bar for you. The <a href="http://developer.apple.com/samplecode/IconCollection/index.html" rel="nofollow">IconCollection</a> sample code provides a simple demonstration of how it works. It's bindings work similarly to a table view's, except instead of rows and columns, each object represented gets an 'item' (an object of type NSCollectionViewItem) that displays it, and those items will be laid out in a grid. The sample code above demonstrates how to set up these 'items' in Interface Builder, which is definitely the easiest way.</p> http://stackoverflow.com/questions/370186/how-do-i-find-the-correct-case-of-a-filename/370295#370295 5 Answer by Boaz Stuller for How do I find the correct case of a filename? Boaz Stuller 2008-12-16T02:02:30Z 2008-12-16T02:02:30Z <p>Use FSPathMakeRef() on both paths, and then use FSCompareFSRefs() to see if they're the same file/folder. You can then use FSRefMakePath() to get the canonical representation, but if you're displaying the filename to the user, you should use NSFileManager's -displayNameAtPath: method instead, since that handles localization and showing/hiding extensions properly.</p> http://stackoverflow.com/questions/355486/can-you-bind-to-the-timeinterval-attribute-of-an-nsdatepicker/357779#357779 1 Answer by Boaz Stuller for Can you Bind to the timeInterval attribute of an NSDatePicker? Boaz Stuller 2008-12-10T22:05:42Z 2008-12-10T22:05:42Z <p>Sadly, no. The timeInterval property of the date picker is not even properly key-value observable. Basically, you're stuck either setting up an action method or using the delegate validation method to receive updates to its value. Also, you'll want to round it off to the nearest multiple of 86400.0 (i.e. the number of seconds in a day), since the date picker is consistently off by some fraction of a second in its reported timeInterval. Perhaps by the time Snow Leopard rolls around, this feature will be fully baked.</p> http://stackoverflow.com/questions/337656/how-can-i-troubleshoot-my-custom-url-scheme/339576#339576 1 Answer by Boaz Stuller for How can I troubleshoot my custom URL scheme? Boaz Stuller 2008-12-04T04:11:35Z 2008-12-04T04:25:15Z <p>Well, I can't help but notice that you're <code>-init</code> method is mis-declared. If should have return type <code>id</code> and have a <code>return self;</code> at the end. </p> <pre><code>- (id)init { self = [super init]; if (self) { [[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(getUrl:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; } return self; } </code></pre> <p>With those fixes, I was able to paste those two routines into a test AppController class and have it print out the URLs (with a custom scheme) that I typed into Safari. I'd put a breakpoint on that -init method and step through it to make absolutely sure that -setEventHandler: method is getting called.</p> http://stackoverflow.com/questions/337656/how-can-i-troubleshoot-my-custom-url-scheme/338952#338952 0 Answer by Boaz Stuller for How can I troubleshoot my custom URL scheme? Boaz Stuller 2008-12-03T22:16:23Z 2008-12-03T22:16:23Z <p>The big question is: Where are you calling NSAppleEventManager's -setEventHandler:...? You need to call this before your app finishes launching if you want to catch a URL that started your app. If your app delegate is created in your MainMenu.nib, then either its -init or -awakeFromNib methods will work, but, for example, -applicationDidFinishLaunching: won't. </p> <p>Also, make sure that the selector you provide to -setEventHandler: is exactly the same as your method name, paying particular attention to capitalization and the proper number of colons.</p> <p>Obviously, if you posted your app delegate's relevant code, it would be quite helpful.</p> http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/324217#324217 1 Answer by Boaz Stuller for How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost? Boaz Stuller 2008-11-27T16:49:20Z 2008-11-27T20:20:51Z <p>A simpler route that may work better for you is to make your app background-only. The discussion on CocoaDev of the <a href="http://www.cocoadev.com/index.pl?LSUIElement" rel="nofollow">LSUIElement</a> plist key explains how to set it up. Basically, your application will not appear in the dock or the app switcher, and will not replace the current application's menu bar when activated. From a user perspective it's never the 'active' application, but any windows you open can get activated and respond to events normally. The only caveat is that you'll never get to show your menu bar, so you'll probably have to set up an NSStatusItem (one of those icon menus that show up on the right side of the menu bar) to control (i.e. quit, bring up prefs, etc.) your application.</p> <p>Edit: I completely forgot about the Non-Activating Panel checkbox in Interface Builder. You need to use an NSPanel instead of an NSWindow to get this choice. This setting lets your panel accept clicks and keyboard input without activating your application. I'm betting that some mix of this setting and the Carbon Hot Keys API is what QuickSilver is using for their UI.</p> http://stackoverflow.com/questions/323403/mounting-a-folder-as-a-device-in-finder-using-cocoa/324293#324293 1 Answer by Boaz Stuller for Mounting a folder as a device in Finder using Cocoa Boaz Stuller 2008-11-27T17:21:08Z 2008-11-27T17:21:08Z <p>Can I suggest rethinking this entirely? A symlink or alias would work, but, if possible, a better idea would be to register for the filetypes people will be moving into that folder, and then respond to opening them by moving or copying them to the correct folder. I'm thinking of something like the Dashboard interface, where if you double-click a downloaded .wdgt file, it asks if you want to 'install' the widget and then, if you do, copies it into ~/Library/Widgets. Obviously, if you're dealing with common types like images, folders, or generic text files, this might be impractical.</p> <p>For implementation, you'd just add the document types to your Info.plist, and handle them in you App Delegate's -application:openFile: method.</p> http://stackoverflow.com/questions/324080/how-to-block-a-superclass-method-to-be-called-to-a-subclass/324137#324137 2 Answer by Boaz Stuller for how to block a superclass method to be called to a subclass Boaz Stuller 2008-11-27T16:15:27Z 2008-11-27T16:15:27Z <p>Just re-implement the unsafe method in your subclass and have it do nothing or throw an exception or re-implement it as safe, just as long as the new implementation doesn't call the unsafe superclass method.</p> <p>For the C++ crew in here: Objective C doesn't let you mark methods as private. You can use its category system to split up the interface into separate files (thus hiding 'private' ones), but all methods on a class are public.</p> http://stackoverflow.com/questions/321061/encrypting-data-in-cocoa-decoding-in-php-and-vice-versa/321587#321587 1 Answer by Boaz Stuller for Encrypting data in Cocoa, decoding in PHP (and vice versa) Boaz Stuller 2008-11-26T17:58:31Z 2008-11-27T00:52:56Z <p>I think your problem is that the method of deriving the raw encryption key from the key string is different on the two sides. The php md5() function returns a hexadecimal string, i.e 'a476c3...' which you are chopping down to the key size, while EVP_BytesToKey() is a fairly complicated hash routine that return a raw byte string. It might, with the parameters supplied simplify down to a raw MD5 hash, but I can't really tell. Either way, it's going to be different from the php hash.</p> <p>If you change the php to md5( "ThisIsMyKey", TRUE ), that will give you a raw md5 hash. On the cocoa side of things, SSCrypto's +getMD5ForData: method should generate the same one for the same string (text encoding issues aside).</p> <p>Edit: If the php string and Cocoa data print out identically, they're still different at the byte level. The php string is hex-encoded (i.e consists only of characters 0-9 and a-f) while the cocoa data is the raw bytes (although NSData helpfully prints out a hex-encoded string of its contents when NSLogged). You still need to add the second TRUE parameter to php's md5() function to get the raw byte string.</p> http://stackoverflow.com/questions/317311/obtaining-an-nsdecimalnumber-from-a-locale-specific-string/317953#317953 1 Answer by Boaz Stuller for Obtaining an NSDecimalNumber from a locale specific string? Boaz Stuller 2008-11-25T16:23:34Z 2008-11-25T22:47:28Z <p>This seems to work:</p> <pre><code>NSString *s = @"0.07"; NSScanner* scanner = [NSScanner localizedScannerWithString:s]; NSDecimal decimal; [scanner scanDecimal:&amp;decimal]; NSDecimalNumber *decimalNumber = [NSDecimalNumber decimalNumberWithDecimal:decimal]; NSLog([decimalNumber stringValue]); // prints 0.07 </code></pre> <p>Also, file a bug on this. That's definitely not the correct behavior you're seeing there.</p> <p>Edit: Until Apple fixes this (and then every potential user updates to the fixed OSX version), you're probably going to have to roll your own parser using NSScanner or accept 'only' double accuracy for entered numbers. Unless you're planning to have the Pentagon budget in this app, I'd suggest the latter. Realistically, doubles are accurate to 14 decimal places, so at anything less than a trillion dollars, they'll be less than a penny off. I had to write my own date parsing routines based on NSDateFormatter for a project and I spent literally a month handling all the funny edge cases, (like how only Sweden has the day of week included in its long date).</p> http://stackoverflow.com/questions/318995/padding-in-nstextview-possible-without-custom-drawing/319053#319053 5 Answer by Boaz Stuller for Padding in NSTextView -- possible without custom drawing? Boaz Stuller 2008-11-25T22:01:21Z 2008-11-25T22:01:21Z <p>The NSTextView method -setTextContainerInset: does what you're looking for. The height and width components of the NSSize parameter specify the vertical and horizontal padding amount respectively.</p> http://stackoverflow.com/questions/318666/object-ownership-in-stringwithstring-and-initwithstring-in-nsstring/318784#318784 2 Answer by Boaz Stuller for Object ownership in stringWithString and initWithString in NSString Boaz Stuller 2008-11-25T20:45:05Z 2008-11-25T20:45:05Z <p>Actually, both setters are wrong. The 'incorrect' one is wrong for general memory management reasons (which are well-expounded elsewhere). The 'recommended' one is wrong for 2 reasons: </p> <ol> <li>if (theName == name), then you're likely to deallocate your object in the first line, and then attempt to use the deallocated object as a parameter to -initWithString: on the second line, resulting in undefined behavior.</li> <li>-initWithString: does not handle being passed nil gracefully.</li> </ol> <p>The 'correct' (IMHO) method is:</p> <pre><code>-(void) setName: (NSString *) theName { if (theName == name) return; // if they're equal, no need to do anything further [name release]; name = [theName copy]; // sets name to nil if theName is nil } </code></pre> <p>For most objects you'll actually want to -retain instead of -copy on that third line, but for strings it's almost always better to copy.</p> http://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c/317818#317818 6 Answer by Boaz Stuller for Handling Callbacks in Objective-C Boaz Stuller 2008-11-25T15:57:39Z 2008-11-25T16:05:58Z <p>Are your problems specifically with the IOKit callback routines? The problem with the specific example you gave is that the IOServiceMatchingCallback takes only 2 parameters, not 3. You need your RawDeviceAdded() and BulkTestDeviceAdded() callback functions to match the IOServiceMatchingCallback prototype and to accept self as the first parameter (refCon), not the 3rd. Also, you need to pass in self as the second-to-last parameter of IOServiceAddMatchingNotification() to get it passed back to you by the callback.</p> <p>A common method for handling C callbacks in Objective-C code is just to have a static function that forwards the callback to your instance. So, your example callback code would look like this:</p> <pre><code>static RawDeviceAdded(void* refcon, io_iterator_t iterator) { [(MyClass*)refcon rawDeviceAdded:iterator]; } @implementation MyClass - (void)setupCallbacks { // ... all preceding setup snipped kr = IOServiceAddMatchingNotification(gNotifyPort,kIOFirstMatchNotification, matchingDict,RawDeviceAdded,(void*)self,&amp;gRawAddedIter ); // call the callback method once to 'arm' the iterator [self rawDeviceAdded:gRawAddedIterator]; } - (void)rawDeviceAdded:(io_iterator_t)iterator { // take care of the iterator here, making sure to complete iteration to re-arm it } @end </code></pre> http://stackoverflow.com/questions/311956/getting-a-unique-id-for-a-window-of-another-application/312099#312099 2 Answer by Boaz Stuller for Getting a unique ID for a window of another application Boaz Stuller 2008-11-23T03:59:17Z 2008-11-23T03:59:17Z <p>The function HIWindowGetCGWindowID() can only return a CGWindowID for one of your app's windows, since a WindowRef from another program won't be valid in yours.</p> <p>The function CGWindowListCopyWindowInfo() from CGWindow.h will return an array of dictionaries, one for each window that matches the criteria you set, including ones in other applications. It only lets you filter by windows above a given window, windows below a given window and 'onscreen' windows, but the dictionary returned includes a process ID for the owning app which you can use to match up window to app. In each returned dictionary the kCGWindowNumber key will point to the window ID as a CFNumber. There is also a CGWindowListCreate() function that only returns an array of CGWindowIDs. There is basically no documentation for these functions beyond the CGWindow.h header and the <a href="http://developer.apple.com/samplecode/SonOfGrab/index.html" rel="nofollow">'Son of Grab'</a> sample code. Also, it's 10.5 only. </p> http://stackoverflow.com/questions/818560/drag-and-drop-files-onto-an-nstableview Comment by Boaz Stuller on Drag-and-drop files onto an NSTableView? Boaz Stuller 2009-05-05T01:39:31Z 2009-05-05T01:39:31Z Those are data source methods. You need to hook the table view's dataSource outlet to the class that implements those methods in order for them to be called. http://stackoverflow.com/questions/819552/what-should-i-replace-this-code-with Comment by Boaz Stuller on What should I replace this code with? Boaz Stuller 2009-05-04T16:08:36Z 2009-05-04T16:08:36Z Your app delegate code seems to have no table handling code at all. If you haven't written the code to populate the table uet, you should write that first, then worry about how to gray the text. http://stackoverflow.com/questions/468575/iphone-development-excbadaccess-error-with-no-stack-trace/468638#468638 Comment by Boaz Stuller on iPhone Development - EXC_BAD_ACCESS error with no stack trace Boaz Stuller 2009-01-22T13:40:28Z 2009-01-22T13:40:28Z No, you shouldn't. The rule to remember is 'If you didn't explicitly alloc, copy or retain it, then you don't explicitly release it.' http://stackoverflow.com/questions/404830/cocoa-wont-capture-shift-modifier/408886#408886 Comment by Boaz Stuller on Cocoa Won't Capture Shift Modifier? Boaz Stuller 2009-01-03T22:31:22Z 2009-01-03T22:31:22Z Fair enough. My personal opinion is that, in the few cases you can use them, key codes are actually easier to use. Instead of using -isEqual, all your comparisons just become: if ([event keyCode] == kVK_ANSI_W) { ... } http://stackoverflow.com/questions/380076/manual-core-data-schema-migration-without-document-changed-warning/381484#381484 Comment by Boaz Stuller on Manual Core Data schema migration without "document changed" warning? Boaz Stuller 2008-12-24T20:17:18Z 2008-12-24T20:17:18Z Good to know. I erased that one from my answer since it doesn't work. http://stackoverflow.com/questions/370186/how-do-i-find-the-correct-case-of-a-filename/370684#370684 Comment by Boaz Stuller on How do I find the correct case of a filename? Boaz Stuller 2008-12-16T17:25:46Z 2008-12-16T17:25:46Z Except in case-sensitive filesystems. Paths are hard. http://stackoverflow.com/questions/370186/how-do-i-find-the-correct-case-of-a-filename/370684#370684 Comment by Boaz Stuller on How do I find the correct case of a filename? Boaz Stuller 2008-12-16T16:42:31Z 2008-12-16T16:42:31Z Also, I generally find FSRefs simpler to use than paths. Paths have a bunch of annoying edge cases (for an example, see this question :) ), while FSRefs mostly Just Work™. The only big limitation of FSRefs vs. paths is that paths can refer to files that don't exist yet, while FSRefs can't. http://stackoverflow.com/questions/370186/how-do-i-find-the-correct-case-of-a-filename/370684#370684 Comment by Boaz Stuller on How do I find the correct case of a filename? Boaz Stuller 2008-12-16T16:36:36Z 2008-12-16T16:36:36Z This code has a couple problems. 1) inodes are only unique per-device, so you really should compare device/inode pairs. 2) The malloc'ed actualPath is leaked. To fix, you can just declare it as UInt8 actualPath[PATH_MAX+1] instead. http://stackoverflow.com/questions/361890/is-a-keyframed-transition-possible-in-core-animation Comment by Boaz Stuller on Is a keyframed transition possible in Core Animation? Boaz Stuller 2008-12-12T17:55:44Z 2008-12-12T17:55:44Z Can you be a bit more specific about what you're trying to accomplish here? Since CATransitions don't actually move the CALayer (just animate its contents changing), something like a path property doesn't really make sense for them. http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/349082#349082 Comment by Boaz Stuller on How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost? Boaz Stuller 2008-12-09T16:18:07Z 2008-12-09T16:18:07Z You only need assistive device access enabled to register a tap on the key-up and key-down events. All the rest work fine without it. However, given the nature of the original question, it's still likely to be required if he uses event taps for his problem. http://stackoverflow.com/questions/338598/nsstrings-initwithdataencoding-return-type-issue Comment by Boaz Stuller on NSString's initWithData:encoding: return type issue Boaz Stuller 2008-12-03T20:53:12Z 2008-12-03T20:53:12Z You'll really have to show us the prototype for and call to the method you've written, along with the actual warning, to get a helpful reply. That's almost surely where the problem is, rather than with the code you posted. http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/324217#324217 Comment by Boaz Stuller on How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost? Boaz Stuller 2008-11-28T18:38:19Z 2008-11-28T18:38:19Z You can do something similar by making your window a non-activating panel, which will (mostly) keep clicks in the panel from activating your app. I suspect this is what Quicksilver is doing, since it has the common associated buglet that table view clicks still activate the app. http://stackoverflow.com/questions/321618/where-can-i-ask-questions-that-arent-programming-questions/321917#321917 Comment by Boaz Stuller on Where can I ask questions that aren't programming questions? Boaz Stuller 2008-11-27T18:52:24Z 2008-11-27T18:52:24Z The thing I love about Y!A is how there's no expectation of 'being knowledgeable', 'knowing the answer' or similar bourgeois conceits like that expected of the answerers there. http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/324162#324162 Comment by Boaz Stuller on How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost? Boaz Stuller 2008-11-27T16:41:46Z 2008-11-27T16:41:46Z Good info. I'd just add that you need “Enable access for assistive devices” enabled to get key events from an event tap also. http://stackoverflow.com/questions/321061/encrypting-data-in-cocoa-decoding-in-php-and-vice-versa/322179#322179 Comment by Boaz Stuller on Encrypting data in Cocoa, decoding in PHP (and vice versa) Boaz Stuller 2008-11-26T22:09:22Z 2008-11-26T22:09:22Z The problem is that the hex string '30b8f5ac...' and the raw data (which NSData helpfully prints as a hex string) &lt;30b8f5ac...&gt; are completely different keys. A string with the characters '30b8f5ac' is actually represented at the byte level as &lt;33306238 66356163&gt; in ASCII.