User Peter Hosey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T12:22:00Zhttp://stackoverflow.com/feeds/user/30461http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884835/programatically-instantiating-a-nspopupmenu-without-a-nspopupbutton-with-cocoa-os/1886338#18863380Answer by Peter Hosey for Programatically instantiating a NSPopUPMenu without a NSPopUpButton with Cocoa OSXPeter Hosey2009-12-11T07:06:44Z2009-12-11T07:06:44Z<p>There is no separate NSPopUpMenu. The menu of an NSPopUpButton is an NSMenu.</p>
<p>If you want a pop-up menu without a pop-up button, you'll need to use NSPopUpButtonCell to display the menu. Of course, this is assuming you have a good reason to fake a pop-up button in an OpenGL view, instead of simply using the standard NSPopUpButton.</p>
http://stackoverflow.com/questions/1878814/nsdatepicker-getting-the-value-when-it-is-changed/1879642#18796420Answer by Peter Hosey for NSDatePicker - getting the value when it is changedPeter Hosey2009-12-10T08:58:46Z2009-12-10T08:58:46Z<p>You can bind the picker's <code>value</code> binding to a property of your controller, or a property of a model object (through a controller).</p>
http://stackoverflow.com/questions/1871185/accessing-a-specific-cell-in-an-nstableview/1871298#18712980Answer by Peter Hosey for Accessing a specific cell in an NSTableViewPeter Hosey2009-12-09T02:44:49Z2009-12-09T18:44:50Z<p>Assuming you don't want to color an entire column, the easiest way is <code>tableView:willDisplayCell:forTableColumn:row:</code>, since there is only one cell per column (the view uses the same cell for that column in every row).</p>
<p>Why did you get rid of your delegate?</p>
http://stackoverflow.com/questions/1872484/enabling-nsbutton-with-bindings-based-on-nstableview-selection/1872643#18726430Answer by Peter Hosey for Enabling NSButton with bindings, based on NSTableView selectionPeter Hosey2009-12-09T09:29:06Z2009-12-09T09:29:06Z<p>Try binding to the array controller's <code>selectedObjects</code>, model key path <code>count</code>, with no value transformer.</p>
<p>Note that this would be unsafe if you allowed multiple selection: For one thing, the <code>count</code> could easily be neither <code>YES</code> nor <code>NO</code>; for another, if the user selected a multiple of 256 items, the lowest byte of the count would be 0, so the <code>BOOL</code> value would be <code>NO</code> even though there is a selection.</p>
http://stackoverflow.com/questions/1871120/how-do-you-show-the-finder-context-menu-from-a-cocoa-application/1871294#18712941Answer by Peter Hosey for How do you show the Finder context menu from a Cocoa application?Peter Hosey2009-12-09T02:42:53Z2009-12-09T02:42:53Z<p>You can't extract the Finder's contextual menu in any stable way, no. Neither can you tell the Finder “show your contextual menu here, as if the user had right-clicked on this item”.</p>
<p>You'll have to make your own.</p>
http://stackoverflow.com/questions/1870656/sort-nsarrays-by-an-int-contained-in-the-array/1871032#18710321Answer by Peter Hosey for Sort NSArray's by an int contained in the arrayPeter Hosey2009-12-09T01:13:03Z2009-12-09T01:13:03Z<p>Use <code>sortedArrayUsingFunction:</code> or <code>sortedArrayUsingComparator:</code>, and pass a function or block that sends <code>compare:options:</code> to one of the strings, using the <code>NSNumericSearch</code> option.</p>
http://stackoverflow.com/questions/1866017/concatenating-two-nsstrings-separated-by-a-crlf/1869477#18694773Answer by Peter Hosey for Concatenating two NSStrings separated by a CRLFPeter Hosey2009-12-08T20:04:54Z2009-12-08T20:04:54Z<p>For an arbitrary number of strings, put them in an array and send it a <code>componentsJoinedByString:</code> message, passing the CRLF string (<code>@"\r\n"</code>).</p>
http://stackoverflow.com/questions/1863583/nstableview-cannot-show-partial-file-names/1864983#18649830Answer by Peter Hosey for nstableview + cannot show partial file namesPeter Hosey2009-12-08T06:23:48Z2009-12-08T06:23:48Z<p>Set the line break mode of the column's text cell, using either the Attributes inspector in IB or a <code>setLineBreakMode:</code> message to the cell.</p>
http://stackoverflow.com/questions/1864718/cocoa-any-downside-to-using-nsset-as-key-in-nsmutabledictionary/1864894#18648944Answer by Peter Hosey for Cocoa: Any downside to using NSSet as key in NSMutableDictionary?Peter Hosey2009-12-08T06:01:38Z2009-12-08T06:01:38Z<blockquote>
<p>I think keys are copied in Cocoa containers, does it mean NSSet is copied to dictionary? Or is there some optimization that retains the NSSet in this case?</p>
</blockquote>
<p>NSDictionaries do copy their keys.</p>
<p>An immutable set will probably respond to <code>copy</code> by returning itself retained, making the “copy” practically free.</p>
<p>A mutable set will respond to <code>copy</code> by returning a copy of itself, which is why using mutable objects as keys is generally a bad idea (you won't be able to find the original after mutating it because it no longer compares equal to the key in the dictionary).</p>
http://stackoverflow.com/questions/1859578/how-to-read-the-content-of-an-other-apps-text-field-on-os-x/1864773#18647730Answer by Peter Hosey for How to read the content of an other app's text field on OS X?Peter Hosey2009-12-08T05:17:53Z2009-12-08T05:17:53Z<blockquote>
<p>For a project I must create a little buddy app that will read the content of one of the main app's text fields.</p>
</blockquote>
<p>Forget about the text field—the companion app doesn't need to know or care about it. Have the main app pass the bit of text to the companion app, or the companion app request it from the main app. You can use <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/DistrObjects/" rel="nofollow">Distributed Objects</a> to do this.</p>
<blockquote>
<p>Something like GetDlgItemText() on Windows where I just pass the control's global handle and will get the control's text.</p>
</blockquote>
<p>There is no global handle for a control in a process in Mac OS X. The closest thing would be Accessibility, but there are much easier ways to do this that don't require access for assistive devices to be turned on. DO is one of them.</p>
http://stackoverflow.com/questions/1863061/can-a-nsdictionary-take-in-nsset-as-key/1864764#18647641Answer by Peter Hosey for Can a NSDictionary take in NSSet as key?Peter Hosey2009-12-08T05:14:59Z2009-12-08T05:14:59Z<p>Yes (since a set conforms to NSCopying and implements <code>isEqual:</code>), with one catch: <em>Do not</em> use a mutable set, or any other mutable object, as a key. You <em>will</em> mutate it, whereupon you will break your ability to look up its value in the dictionary.</p>
http://stackoverflow.com/questions/1857204/how-to-pass-a-value-from-cocoa-to-an-sqlite-query/1857651#18576511Answer by Peter Hosey for How to pass a value from Cocoa to an SQLite queryPeter Hosey2009-12-07T03:27:43Z2009-12-07T03:27:43Z<p>Why are you not using one of SQLite's <a href="http://www.sqlite.org/c3ref/bind%5Fblob.html" rel="nofollow">value binding API</a>? The statement would look something like</p>
<pre><code>SELECT color_r, color_g, color_b FROM Calendar WHERE ROWID = ?;
</code></pre>
<p>And you would pass the argument directly to SQLite, for it to safely insert into the query. This will protect you from SQL injection attacks. (The example you show <em>may</em> be a safe one, depending on where those values ultimately come from, but <strong>using <code>sprintf</code> or <code>stringWithFormat:</code> to construct SQL queries is a very very bad habit to get into. Don't get screwed by <a href="http://xkcd.com/327/" rel="nofollow">Little Bobby Tables</a></strong>.)</p>
<p>As for why you're having the problem, SQLite doesn't accept Cocoa types like NSString *. When you switch to using SQLite to format the query, you'll be able to learn from its documentation which type you should be using. You can then ask another question about how to perform that conversion.</p>
http://stackoverflow.com/questions/1854510/core-data-core-animation-calayer-together/1854555#18545550Answer by Peter Hosey for Core Data + Core Animation/CALayer together??Peter Hosey2009-12-06T06:33:12Z2009-12-06T06:33:12Z<p>Is editing and saving the position and size of these “blocks” the task your app exists to accomplish?</p>
<p>If not, that information probably shouldn't be in your model.</p>
http://stackoverflow.com/questions/1853663/decode-utf8-on-iphone/1853776#18537766Answer by Peter Hosey for decode utf8 on iphonePeter Hosey2009-12-05T23:01:21Z2009-12-05T23:11:56Z<p>Sending <code>cStringUsingEncoding:</code> to <code>encodedString</code> can only work if <code>encodedString</code> is an NSString object. Having an NSString object is the point you're trying to get to. Moreover, that method does not <em>decode</em> the string, it <em>encodes</em> the string using the encoding you ask for; thus, in the code you show, you ask for the (already-encoded) string to be encoded in some random encoding (the default C string encoding), then attempt to decode the result as UTF-8. That won't work.</p>
<p>You don't specify what type you're using for <code>encodedString</code>. Either way, you need to create the NSString object by passing <code>encodedString</code> and its encoding.</p>
<ul>
<li>If <code>encodedString</code> is an NSData object, use <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/initWithData%3Aencoding%3A" rel="nofollow">the <code>initWithData:encoding:</code> method</a>.</li>
<li>If it's a null-terminated C string; use <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/initWithCString%3Aencoding%3A" rel="nofollow">the <code>initWithCString:encoding:</code> method</a> or (only when it's UTF-8) <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/initWithUTF8String%3A" rel="nofollow">the <code>initWithUTF8String:</code> method</a>.</li>
<li>If it's just plain (unterminated) bytes, use <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/initWithBytes%3Alength%3Aencoding%3A" rel="nofollow">the <code>initWithBytes:length:encoding:</code> method</a>.</li>
</ul>
<p>All of these except <code>initWithUTF8String:</code> require you to specify the encoding (<code>initWithUTF8String:</code> does by definition), and all of them except <code>initWithData:encoding:</code> come in an autoreleasing convenience version (<code>+stringWith…</code> instead of <code>-initWith…</code>).</p>
http://stackoverflow.com/questions/1204256/how-to-trace-a-program-from-its-very-beginning-without-running-it-as-root1How to trace a program from its very beginning without running it as rootPeter Hosey2009-07-30T03:11:17Z2009-12-05T07:43:04Z
<p>I'm writing a tool that calls through to DTrace to trace the program that the user specifies.</p>
<p>If my tool uses dtrace -c to run the program as a subprocess of DTrace, not only can I not pass any arguments to the program, but the program runs with all the privileges of DTrace—that is, as root (I'm on Mac OS X). This makes certain things that should work break, and obviously makes a great many things that shouldn't work possible.</p>
<p>The other solution I know of is to start the program myself, pause it by sending it <code>SIGSTOP</code>, pass its PID to <code>dtrace -p</code>, then continue it by sending it <code>SIGCONT</code>. The problem is that either the program runs for a few seconds without being traced while DTrace gathers the symbol information or, if I sleep for a few seconds before continuing the process, DTrace complains that <code>objc<pid>:<class>:<method>:entry</code> matches no probes.</p>
<p>Is there a way that I can run the program under the user's account, not as root, but still have DTrace able to trace it from the beginning?</p>
http://stackoverflow.com/questions/1849636/how-to-draw-a-rounded-nsimage/1851346#18513461Answer by Peter Hosey for How to draw a rounded NSImagePeter Hosey2009-12-05T06:27:08Z2009-12-05T06:27:08Z<p>Just to provide a bit more info on what you did wrong:</p>
<p>The purpose of saving and restoring the gstate is to be able to undo your changes to the gstate. In your case, restoring the gsave after clipping undid the clip. That's why the solution (as explained by Rhult) is to draw what you want clipped <em>before</em> you restore the gstate.</p>
http://stackoverflow.com/questions/1847715/from-xcode-how-do-i-read-data-from-a-text-file-that-is-constantly-being-updated/1848446#18484461Answer by Peter Hosey for From Xcode, how do I read data from a text file that is constantly being updated?Peter Hosey2009-12-04T17:26:51Z2009-12-04T17:26:51Z<p>You can use a <a href="http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man2/kqueue.2.html" rel="nofollow">kqueue</a> (perhaps with a wrapper such as <a href="http://zathras.de/angelweb/sourcecode.htm#UKKQueue" rel="nofollow">UKKQueue</a>) to watch the file for changes.</p>
http://stackoverflow.com/questions/1839160/allow-0-values-in-nsdatepicker-fields/1841071#18410710Answer by Peter Hosey for Allow 0 values in NSDatePicker fields?Peter Hosey2009-12-03T16:24:43Z2009-12-03T16:24:43Z<p>It sounds to me like your UI does not make the user enter a specific date, but a pattern that matches multiple dates. You should use multiple fields with checkboxes for this; something like:</p>
<pre><code>☑ Year: [ 2009]
☑ Month: [12]
☐ Day: [ ] (field disabled)
</code></pre>
<p>If the units that are present should always be a contiguous series (e.g., 2009-12 but never -12-03 or 2009-*-03), cut out the Year checkbox and disable each checkbox if the one before it is unchecked (with Month always enabled).</p>
http://stackoverflow.com/questions/1837391/cocoa-question-for-displaying-images/1837745#18377451Answer by Peter Hosey for Cocoa question for displaying imagesPeter Hosey2009-12-03T04:58:04Z2009-12-03T04:58:04Z<p>The Console is text-only, so no, you can't print an image to it the same way you log text. The closest equivalent is to <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSImage%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSImage/TIFFRepresentation" rel="nofollow">export the image as TIFF data</a> and <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSData%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSData/writeToFile%3Aoptions%3Aerror%3A" rel="nofollow">write that data to a file</a> in <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation%5FFunctions/Reference/reference.html#//apple%5Fref/c/func/NSTemporaryDirectory" rel="nofollow">the temporary directory</a>.</p>
<p>As for <code>setNeedsDisplay:</code>, that tells AppKit that the view should be told to redraw the next time the window redraws its views. (In other words, it sets the view as needing display—exactly what it says on the box.) Usually, this is because you've changed the model object(s) that the view displays, either by replacing them with other objects or by mutating one or more of their properties.</p>
<p>You would need to have a view to display; an image view would certainly qualify, but if you're looking for the image equivalent to <code>NSLog</code>, this isn't it, unless you don't mind either making a dedicated window just for showing this image or temporarily putting a image view into one of your real windows.</p>
http://stackoverflow.com/questions/1835717/sharing-a-single-cocoa-framework-copy-across-plugins/1837349#18373490Answer by Peter Hosey for Sharing a single cocoa framework copy across pluginsPeter Hosey2009-12-03T02:55:31Z2009-12-03T02:55:31Z<p>Try weak-linking the plug-ins against the framework, copying the framework into the app's Frameworks folder, and linking, in the regular fashion, the app against that copy.</p>
http://stackoverflow.com/questions/1835870/compare-nsstring-accounting-for-articles-i-e-the-and-a/1835966#18359661Answer by Peter Hosey for Compare NSString accounting for articles (i.e. "the" and "a")Peter Hosey2009-12-02T21:33:48Z2009-12-02T21:33:48Z<p>When you wonder whether Cocoa supports something, it generally helps to look at the documentation—in this case, <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/doc/constant%5Fgroup/Search%5Fand%5FComparison%5FOptions" rel="nofollow">the list of all of the options NSString supports for comparisons</a>.</p>
<p>As you implement this, don't forget to put the list of articles into a localized resource file inside your app bundle, so that localizers can provide lists of strippable articles in their own languages. Load that file on demand, and keep it around throughout the lifetime of your process. Alternatively, for some things (e.g., band names), it may be better to have a single file with all known articles.</p>
http://stackoverflow.com/questions/1829324/fading-out-a-cocoa-window/1829988#18299886Answer by Peter Hosey for Fading out a Cocoa windowPeter Hosey2009-12-02T00:43:29Z2009-12-02T00:43:29Z<p><a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSViewAnimation%5FClass/" rel="nofollow">NSViewAnimation</a>, despite its name, works on windows as well. There's <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSViewAnimation%5FClass/Reference/Reference.html#//apple%5Fref/c/data/NSViewAnimationEffectKey" rel="nofollow">a key you can use to perform fade-out animations</a>.</p>
http://stackoverflow.com/questions/1828672/osx-number-of-buttons-on-attached-mouse/1829126#18291263Answer by Peter Hosey for OSX: number of buttons on attached mousePeter Hosey2009-12-01T21:41:58Z2009-12-01T21:41:58Z<p>Use “secondary click”. This is true of right-click, ctrl-click, left-click on a button-swapped mouse, 18th-click on a highly configurable mouse, a tablet or joystick configured to work as a mouse, etc.</p>
http://stackoverflow.com/questions/1822828/easiest-way-to-run-shell-script-objective-c/1822975#18229752Answer by Peter Hosey for Easiest way to run shell script objective-cPeter Hosey2009-11-30T22:50:04Z2009-11-30T22:50:04Z<p>Don't use shell scripts when you can help it. They're a good way to introduce serious bugs when you parameterize the script (e.g., <code>mount_webdav %@ %@</code>).</p>
<p>Instead, use either NSTask, <code>fork</code>/<code>exec</code> directly, or (in Python) the subprocess module. You'll pass the three arguments as an array, rather than as a single string.</p>
http://stackoverflow.com/questions/1817628/clicking-the-mouse-down-to-drag-objects-on-mac/1817721#18177210Answer by Peter Hosey for Clicking the mouse down to drag objects on MacPeter Hosey2009-11-30T03:34:39Z2009-11-30T03:34:39Z<p>To drag, you must put the mouse button down first, then move the mouse.</p>
<p>Programmatically, you should probably post <code>kCGEventLeftMouseDragged</code>, not <code>kCGEventMouseMoved</code>, between the <code>LeftMouseDown</code> and <code>LeftMouseUp</code> events. You can install a custom event tap and log real mouse events to confirm or correct this.</p>
http://stackoverflow.com/questions/1816429/changing-an-nsimage-in-xcode-this-line-of-code-not-working/1817171#18171710Answer by Peter Hosey for Changing an NSImage in XCode - this line of code not workingPeter Hosey2009-11-29T23:40:15Z2009-11-29T23:40:15Z<p>It's not a linking issue—your app wouldn't even launch (assuming it even links successfully) if you'd failed to link against Cocoa or AppKit.</p>
<p>More probably, either you haven't connected the outlet to your image view in your nib, or you haven't loaded the nib yet. The way to check this would be to <code>NSLog</code> the value of the <code>imageView</code> pointer, using the <code>%p</code> formatter.</p>
http://stackoverflow.com/questions/1815178/closing-old-window-when-opening-a-new-one-in-cocoa/1815456#18154564Answer by Peter Hosey for Closing old window when opening a new one in CocoaPeter Hosey2009-11-29T12:51:02Z2009-11-29T18:54:15Z<p>Send window A a <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWindow/close" rel="nofollow"><code>close</code></a> or <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWindow/performClose%3A" rel="nofollow"><code>performClose:</code></a> message (depending on whether you want to emulate the user closing the window, which is the latter, or simply close it immediately and unconditionally).</p>
<p>Note that closing the window may release it; see <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWindow/setReleasedWhenClosed%3A" rel="nofollow">the <code>releasedWhenClosed</code> property</a>, which has a checkbox in IB and may already be turned on there. You may want to <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWindow/orderOut%3A" rel="nofollow">order the window out</a> (as compared to ordering in, such as by ordering front) instead.</p>
http://stackoverflow.com/questions/1815854/help-needed-on-font-for-localized-string/1816070#18160701Answer by Peter Hosey for Help needed on font for localized stringPeter Hosey2009-11-29T17:09:12Z2009-11-29T17:15:04Z<p>Get the current locale from <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSLocale%5FClass/" rel="nofollow">NSLocale</a>, then send it an <code>objectForKey:</code> message and ask for <code>NSLocaleLanguageCode</code>. If the current language code is <code>en</code>, <code>en_US</code>, <code>en_GB</code>, <code>en_AU</code>, or <code>en_CA</code>, then the current language is some form of English.</p>
<p>To simplify the test, you can put the language codes into an array or set and test the current language code's membership in that collection. Or, better yet, put them into a dictionary as the keys, with the value for all of them being <code>CP_FONT_NAME</code>; then, if the client later provides other fonts for other languages, you can add those new font-language pairs easily.</p>
http://stackoverflow.com/questions/1815126/how-do-you-change-which-view-is-active-in-a-window/1815436#18154360Answer by Peter Hosey for How do you change which view is active in a window?Peter Hosey2009-11-29T12:46:50Z2009-11-29T12:46:50Z<p>It sounds like you don't want to change views at all, but change the model you've loaded into the views.</p>
<p>The simplest way is probably to give the controller for the window a property by which the views can access another controller that owns a portion of the model (one such controller for every item in the menu). Then, you simply switch that controller.</p>
<p>In the setter for that property, you may need to send messages such as <code>reloadData</code> to some of the views, depending on what sort of views they are. Views that observe for changes using Bindings or KVO won't need this.</p>
http://stackoverflow.com/questions/1813211/how-to-find-a-string-in-an-nsarray/1813228#181322812Answer by Peter Hosey for How to find a string in an NSArray?Peter Hosey2009-11-28T17:58:27Z2009-11-28T23:32:30Z<p>You want <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/NSArray.html#//apple%5Fref/occ/instm/NSArray/indexOfObject%3A" rel="nofollow">the <code>indexOfObject:</code> method</a>, which looks for the object by sending each object in the array an <code>isEqual:</code> message.</p>
http://stackoverflow.com/questions/1884491/crashing-while-trying-to-move-uitableview-rows/1885068#1885068Comment by Peter Hosey on Crashing while trying to move UITableView rowsPeter Hosey2009-12-11T02:37:11Z2009-12-11T02:37:11ZNote that one should use <code>NSUInteger</code> for the result of <code>count</code>, lest it be truncated (particularly when moving code to the Mac, where <code>NSUInteger</code> is, increasingly often, larger than an <code>int</code>). It's also important to keep it unsigned so that comparisons to this never-negative value always make sense.http://stackoverflow.com/questions/1876086/hotkeys-key-eventsComment by Peter Hosey on Hotkeys? Key events?Peter Hosey2009-12-09T23:53:20Z2009-12-09T23:53:20ZJoshua Nozzi's answer will work if you only want to respond to this key combination within your own app. You didn't specify whether you want that or a global hot-key (i.e., you can press this key anywhere on the system). I hope you aren't asking to set ⌘L as a global hot-key, because I use ⌘L <i>a lot</i> in my browsers and in iTunes.http://stackoverflow.com/questions/1876017/debugging-a-null-cgcontext-under-cocoa-carbonComment by Peter Hosey on Debugging a NULL CGContext under Cocoa/CarbonPeter Hosey2009-12-09T23:51:53Z2009-12-09T23:51:53ZSet a breakpoint for <code>CGContextSetTextMatrix</code>.http://stackoverflow.com/questions/695038/is-there-a-way-to-use-the-webkit-web-inspector-from-a-cocoa-webview-object/1875545#1875545Comment by Peter Hosey on Is there a way to use the WebKit web inspector from a Cocoa WebView object?Peter Hosey2009-12-09T19:12:54Z2009-12-09T19:12:54ZMinus that ] at the front, yes.http://stackoverflow.com/questions/1874910/convert-hex-string-to-longComment by Peter Hosey on Convert hex string to longPeter Hosey2009-12-09T19:10:08Z2009-12-09T19:10:08ZThis is not a duplicate of <a href="http://stackoverflow.com/questions/1870475" rel="nofollow">stackoverflow.com/questions/1870475</a>, which is about converting the hex digits to <i>a string</i>.http://stackoverflow.com/questions/1871185/accessing-a-specific-cell-in-an-nstableview/1871298#1871298Comment by Peter Hosey on Accessing a specific cell in an NSTableViewPeter Hosey2009-12-09T18:45:06Z2009-12-09T18:45:06ZDuly edited; thanks.http://stackoverflow.com/questions/1872484/enabling-nsbutton-with-bindings-based-on-nstableview-selection/1872577#1872577Comment by Peter Hosey on Enabling NSButton with bindings, based on NSTableView selectionPeter Hosey2009-12-09T18:43:39Z2009-12-09T18:43:39ZOoh, I missed that. Canceling out somebody's downvote.http://stackoverflow.com/questions/1872484/enabling-nsbutton-with-bindings-based-on-nstableview-selection/1872577#1872577Comment by Peter Hosey on Enabling NSButton with bindings, based on NSTableView selectionPeter Hosey2009-12-09T09:27:02Z2009-12-09T09:27:02Z<code>selection</code> is a proxy object; I doubt it will ever be <code>nil</code>.http://stackoverflow.com/questions/1117065/cocoa-getting-the-current-mouse-position-on-the-screen/1872363#1872363Comment by Peter Hosey on Cocoa: Getting the current mouse position on the screenPeter Hosey2009-12-09T09:23:42Z2009-12-09T09:23:42ZThat's Quartz Event Services, not Carbon, but otherwise you're correct: Cocoa will do this job just fine, without creating a CGEvent object.http://stackoverflow.com/questions/1871380/cocoa-nsstring-not-removing-all-the-charactersComment by Peter Hosey on cocoa: NSString not removing all the charactersPeter Hosey2009-12-09T06:45:31Z2009-12-09T06:45:31ZWhy are you making a mutable copy? You don't mutate the string. Plus, you leak it.http://stackoverflow.com/questions/1870656/sort-nsarrays-by-an-int-contained-in-the-array/1871032#1871032Comment by Peter Hosey on Sort NSArray's by an int contained in the arrayPeter Hosey2009-12-09T02:31:03Z2009-12-09T02:31:03ZI will leave it to you to replace the contents of one of those with code that sends a <code>compare:options:</code> message to the <code>a</code> object, passing <code>b</code> as the object to compare and <code>NSNumericSearch</code> as the option.http://stackoverflow.com/questions/1870656/sort-nsarrays-by-an-int-contained-in-the-array/1871032#1871032Comment by Peter Hosey on Sort NSArray's by an int contained in the arrayPeter Hosey2009-12-09T02:29:23Z2009-12-09T02:29:23ZExample of a comparison block: <code>NSComparator everythingComparesEqual = ^(id a, id b, void *context){ return NSOrderedSame; }</code>http://stackoverflow.com/questions/1870656/sort-nsarrays-by-an-int-contained-in-the-array/1871032#1871032Comment by Peter Hosey on Sort NSArray's by an int contained in the arrayPeter Hosey2009-12-09T02:26:43Z2009-12-09T02:26:43ZExample of a comparison function: <code>NSComparisonResult everythingComparesEqual(id a, id b, void *context) { return NSOrderedSame; }</code>http://stackoverflow.com/questions/1869624/objective-c-how-to-resize-a-window-programmatically-with-given-window-id/1869670#1869670Comment by Peter Hosey on Objective C - how to resize a window programmatically with given window id?Peter Hosey2009-12-09T01:19:18Z2009-12-09T01:19:18ZYou don't, and even if you could, it doesn't necessarily have a <code>window</code> property.http://stackoverflow.com/questions/1868955/printing-4x6-cards-in-osx-cocoaComment by Peter Hosey on printing 4"x6" cards in OSX (cocoa)Peter Hosey2009-12-09T01:16:09Z2009-12-09T01:16:09ZDon't forget to release those NSPrintInfo objects. Also, you should use <code>NSUInteger</code> for the array index (or, better yet, just loop on the array directly).