User Chris Hanson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:34:02Z http://stackoverflow.com/feeds/user/714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1782357/how-to-write-xcode-plugins/1788156#1788156 0 Answer by Chris Hanson for How to write XCode plugins? Chris Hanson 2009-11-24T06:13:06Z 2009-11-24T06:13:06Z <p>Xcode does not have a public plug-in API.</p> http://stackoverflow.com/questions/1788059/target-conditional-library-search-paths-xcode/1788113#1788113 1 Answer by Chris Hanson for target conditional library search paths xcode Chris Hanson 2009-11-24T06:01:15Z 2009-11-24T06:01:15Z <p>No, a C <code>#define</code> is not at the same level as library linkage.</p> <p>However, you can set a C <code>#define</code> (via the Preprocessor Macros build setting) from the value of a custom build setting, like <code>BUILT_WITH_FOO</code>, and also set your <code>OTHER_LDFLAGS</code> build setting based on that custom build setting as well.</p> <p>For example:</p> <pre><code>BUILT_WITH_FOO = foo GCC_PREPROCESSOR_DEFINITIONS_ = USING_FOO=0 GCC_PREPROCESSOR_DEFINITIONS_foo = USING_FOO=1 GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS_$(BUILT_WITH_FOO)) OTHER_LDFLAGS_ = -lsomething OTHER_LDFLAGS_foo = -lsomething -lfoo OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(BUILT_WITH_FOO)) </code></pre> <p>The above would let you adjust only the value of the <code>BUILT_WITH_FOO</code> build setting to choose whether to use the Preprocessor Macros and Other Linker Flags variants whose names end with a trailing <code>_</code>, or the ones whose names end with a trailing <code>_foo</code>.</p> http://stackoverflow.com/questions/25746/whats-the-difference-between-a-string-constant-and-a-string-literal/25798#25798 13 Answer by Chris Hanson for What's the difference between a string constant and a string literal? Chris Hanson 2008-08-25T08:51:58Z 2009-09-02T21:55:19Z <p>In Objective-C, the syntax <code>@"foo"</code> is an <strong>immutable</strong>, <strong>literal</strong> instance of <code>NSString</code>. It does not make a constant string from a string literal as Mike assume.</p> <p>Objective-C compilers typically <em>do</em> intern literal strings within compilation units — that is, they coalesce multiple uses of the same literal string — and it's possible for the linker to do additional interning across the compilation units that are directly linked into a single binary. (Since Cocoa distinguishes between mutable and immutable strings, and literal strings are always also immutable, this can be straightforward and safe.)</p> <p><strong>Constant</strong> strings on the other hand are typically declared and defined using syntax like this:</p> <pre><code>// MyExample.h - declaration, other code references this extern NSString * const MyExampleNotification; // MyExample.m - definition, compiled for other code to reference NSString * const MyExampleNotification = @"MyExampleNotification"; </code></pre> <p>The point of the syntactic exercise here is that you can make <em>uses of</em> the string efficient by ensuring that there's only one instance of that string in use <em>even across multiple frameworks</em> (shared libraries) in the same address space. (The placement of the <code>const</code> keyword matters; it guarantees that the pointer itself is guaranteed to be constant.)</p> <p>While burning memory isn't as big a deal as it may have been in the days of 25MHz 68030 workstations with 8MB of RAM, comparing strings for equality can take time. Ensuring that most of the time strings that are equal will also be pointer-equal </p> <p>Say, for example, you want to subscribe to notifications from an object by name. If you use non-constant strings for the names, the <code>NSNotificationCenter</code> posting the notification could wind up doing a lot of byte-by-byte string comparisons when determining who is interested in it. If most of these comparisons are short-circuited because the strings being compared have the same pointer, that can be a big win.</p> http://stackoverflow.com/questions/33720/change-templates-in-xcode/33743#33743 18 Answer by Chris Hanson for Change templates in XCode Chris Hanson 2008-08-29T01:14:27Z 2009-08-31T07:00:46Z <p>You wouldn't change the existing templates. In other words, don't <em>modify</em> anything under the <code>/Developer</code> hierarchy (or wherever you installed your developer tools).</p> <p>Instead, clone the templates you want to have customized variants of. Then change their names and the information in them. Finally, put them in the appropriate location in your account's <code>Library/Application Support</code> folder, specifically:</p> <ul> <li>File templates: <code>~/Library/Application Support/Developer/Shared/Xcode/File Templates/</code></li> <li>Target templates: <code>~/Library/Application Support/Developer/Shared/Xcode/Target Templates/</code></li> <li>Project templates: <code>~/Library/Application Support/Developer/Shared/Xcode/Project Templates/</code></li> </ul> <p>That way they won't be overwritten when you install new developer tools, and you can tweak them to your heart's content.</p> http://stackoverflow.com/questions/1320630/are-there-any-apis-added-for-spotlight-search-for-iphone-3-0/1320827#1320827 1 Answer by Chris Hanson for Are there any APIs added for Spotlight Search for iPhone 3.0? Chris Hanson 2009-08-24T06:59:17Z 2009-08-24T06:59:17Z <p>No, there are no third-party APIs for Spotlight Search in iPhone OS 3.0.</p> http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319925#1319925 4 Answer by Chris Hanson for How to organize unit testing of a library project in Xcode? Chris Hanson 2009-08-24T00:00:53Z 2009-08-24T00:00:53Z <p>You need two targets in your project; a target in Xcode produces a <em>product</em> which is a library, executable, or some other output.</p> <p>Thus you'd have a target to produce <code>libatom.dylib</code>, which I suspect you've already set up, and another command-line executable target to produce the <code>test-atom</code> executable for you to run to test your library.</p> <p>Once you've added the <code>test-atom</code> target, you should Get Info on <code>test-atom.c</code> and remove its <em>membership</em> from the <code>libatom.dylib</code> target, and add it as a member of your new <code>test-atom</code> target. The target membership of a file is what determines whether building a target will try to compile/copy/link that file. (What the target does with the file depends on what build phase it gets added to when it's made a member.)</p> <p>You should also Get Info on the <code>libatom.dylib</code> entry in your Products group, and make <em>that</em> a member of the <code>test-atom</code> target as well. That will cause the <code>test-atom</code> executable to link against <code>libatom.dylib</code>.</p> <p>Finally, Get Info on the <code>test-atom</code> target (not the product) and in the General tab, add a <em>dependency</em> on the <code>libatom.dylib</code> target. This will ensure that building the <code>test-atom</code> target will always first build the <code>libatom.dylib</code> target.</p> http://stackoverflow.com/questions/1318509/bdd-in-objective-c/1319842#1319842 3 Answer by Chris Hanson for BDD in Objective-C Chris Hanson 2009-08-23T23:17:53Z 2009-08-23T23:17:53Z <p>Take a look at how the <code>STAssert</code> macros in OCUnit (SenTestingKit, included with Xcode) are implemented.</p> <p>In your own unit test bundle, you could implement a category on <code>NSObject</code> to add methods like a hypothetical <code>-shouldBeValid</code> which would then call the same pass/fail machinery that the <code>STAssert</code> macros do now.</p> <p>In case you're not intimately familiar with the C preprocessor...</p> <p>You'll probably also have to use a <code>#define</code> for your macros to pass through the right values for <code>__FILE__</code> and <code>__LINE__</code> when your BDD tests fail. For example, you might have to do something like this:</p> <pre><code>@interface NSObject (BehaviorDrivenDevelopment) - (void)shouldBeValidInFile:(const char *)file line:(int)line; @end #define shouldBeValid shouldBeValidInFile:__FILE__ line:__LINE__ </code></pre> <p>That way you would invoke it like this:</p> <pre><code>[[someObject methodUnderTest:argument] shouldBeValid]; </code></pre> <p>The code the compiler sees will be this:</p> <pre><code>[[someObject methodUnderTest:argument] shouldBeValidInFile:__FILE__ line:__LINE__]; </code></pre> <p>The <code>__FILE__</code> and <code>__LINE__</code> preprocessor macros will expand to the current file and line in your test source file.</p> <p>This way, when you do have a failing test, it can pass appropriate information to SenTestingKit to send back to Xcode. The failure will show up correctly in the Build Results window, and clicking it will take you to the exact location of the failure in your tests.</p> http://stackoverflow.com/questions/1117384/when-porting-java-code-to-objc-how-best-to-represent-checked-exceptions/1117433#1117433 5 Answer by Chris Hanson for When porting Java code to ObjC, how best to represent checked exceptions? Chris Hanson 2009-07-13T01:39:35Z 2009-07-13T01:39:35Z <p>In Cocoa, exceptions are really only supposed to be used for "programming errors;" the philosophy is to let the app catch them, give the user the option to save what they're doing, and quit. For one thing, not all frameworks or code paths may be 100% exception-safe, so this can be the only safe course of action. For errors that can be anticipated and recovered from, you should use NSError, typically via an out-parameter.</p> http://stackoverflow.com/questions/1077737/ocunit-test-for-protocols-callbacks-delegate-in-objective-c/1102364#1102364 5 Answer by Chris Hanson for OCUnit test for protocols/callbacks/delegate in Objective-C Chris Hanson 2009-07-09T07:32:23Z 2009-07-09T07:32:23Z <p>Testing a delegate is trivial. Just set an ivar in the test in your callback method, and check it after what should be triggering the delegate callback.</p> <p>For example, if I have a class <code>Something</code> that uses a delegate of protocol <code>SomethingDelegate</code> and sends that delegate <code>-something:delegateInvoked:</code> in response to some message, I can test it lik ethis:</p> <pre><code>@interface TestSomeBehavior : SenTestCase &lt;SomethingDelegate&gt; { Something *_object; BOOL _callbackInvoked; } @end @implementation TestSomeBehavior - (void)setUp { [super setUp]; _object = [[Something alloc] init]; _object.delegate = self; } - (void)tearDown { _object.delegate = nil; [_object release]; [super tearDown]; } - (void)testSomeBehaviorCallingBack { [_object doSomethingThatShouldCallBack]; STAssertTrue(_callbackInvoked, @"Delegate should send -something:delegateInvoked:"); } - (void)something:(Something *)something delegateInvoked:(BOOL)invoked { _callbackInvoked = YES; } @end </code></pre> <p>I think you already understand this, however, from the way you've phrased your question. (I'm mostly posting this for other readers.) I think you're actually asking a more subtle question: How do I test something that <strong>may occur later</strong> such as something that spins the runloop. My cue is your mention of sleeping and threading.</p> <p>First off, you <strong>should not</strong> just arbitrarily invoke a method on another thread. You should only do so if it's documented to be safe to use in that way. The reason is that you don't know what the internals of the class do. For example, it might schedule events on the run loop, in which case running the method on a different thread will make them happen on a different run loop. This would then screw up the class's internal state.</p> <p>If you <strong>do</strong> need to test something that may take a little time to happen, you can do this just by running the current run loop. Here's how I might rewrite the individual test method above to do that:</p> <pre><code>- (void)testSomeBehaviorCallingBack { NSDate *fiveSecondsFromNow = [NSDate dateWithTimeIntervalSinceNow:5.0]; [_object doSomethingThatShouldCallBack]; [[NSRunLoop currentRunLoop] runUntilDate:fiveSecondsFromNow]; STAssertTrue(_callbackInvoked, @"Delegate should send -something:delegateInvoked:"); } </code></pre> <p>This will spin the current run loop in the default mode for 5 seconds, under the assumption that <code>-doSomethingThatShouldCallBack</code> will schedule its work on the main run loop in the default mode. This is usually OK because APIs that work this way often let you specify a run loop to use as well as a mode to run in. If you can do that, then you can use <code>-[NSRunLoop runMode:beforeDate:]</code> to run the run loop in just that mode instead, making it more likely that the work you're expecting to be done will be.</p> http://stackoverflow.com/questions/1034554/objective-c-equivalent-of-override-in-c/1034572#1034572 3 Answer by Chris Hanson for Objective-C equivalent of "override" in C# Chris Hanson 2009-06-23T19:17:24Z 2009-06-23T19:17:24Z <p>All class and instance methods in Objective-C are dispatched dynamically and can be overridden in subclasses. There is nothing like C#'s <code>override</code> keyword, or like its <code>virtual</code> keyword.</p> http://stackoverflow.com/questions/1019365/objective-c-changes-between-os-2-2-1-and-os-3/1031325#1031325 16 Answer by Chris Hanson for Objective-C changes between OS 2.2.1 and OS 3?? Chris Hanson 2009-06-23T08:28:30Z 2009-06-23T08:28:30Z <p>This is a compiler bug.</p> <p>Though you didn't specify it completely, I expect your code looks like this:</p> <pre><code>@interface Foo : NSObject { NSMutableArray *objects; } @property (readonly, copy) NSArray *objects; @end @implementation Foo @synthesize objects; @end </code></pre> <p>The compiler is, unfortunately, confused between the declaration of the <code>objects</code> <em>property</em> and the declaration of the <code>objects</code> <em>instance variable</em>. Remember that properties and instance variables are different things in Objective-C; a property can be backed by an instance variable, but it's really part of the public interface of a class.</p> <p>You can work around this by changing your code to clearly separate the definition of the instance variable from the definition of the property, for example by prefixing the name of the instance variable:</p> <pre><code>@interface Foo : NSObject { NSMutableArray *_objects; } @property (readonly, copy) NSArray *objects; @end @implementation Foo @synthesize objects = _objects; @end </code></pre> <p>This way the compiler doesn't get confused about the property versus the instance variable in expressions like <code>self.objects</code> (which it shouldn't anyway, but apparently does).</p> <p>Just to head off the inevitable response: Apple <em>does not</em> reserve the underbar prefix for instance variables. It's reserved for methods. Regardless, if you dislike the underbar, feel free to use another prefix.</p> http://stackoverflow.com/questions/1019172/creating-an-xcode-data-formatter-bundle-for-custom-obj-c-objects/1019438#1019438 2 Answer by Chris Hanson for Creating an Xcode data formatter bundle for custom Obj-C objects Chris Hanson 2009-06-19T18:35:27Z 2009-06-19T18:44:04Z <p>As of Xcode 2.5 and 3.0, the locations for such things have changed to support multiple versions of Xcode coexisting on one system. You should put your custom data formatters into the directory "<code>Library/Application Support/Developer/Shared/CustomDataViews</code>" in either the local (<code>/</code>) or user (<code>~</code>) domain; then they should be available the next time you launch Xcode.</p> <p>The <code>Shared</code> in the path above can be a version number such as <code>3.0</code> or <code>3.1</code> if you're creating something specific to a particular Xcode version.</p> http://stackoverflow.com/questions/953343/update-bound-dictionary-based-on-nstextfieldcells-edited-value/963573#963573 2 Answer by Chris Hanson for Update bound dictionary based on NSTextFieldCell's edited value Chris Hanson 2009-06-08T05:54:58Z 2009-06-08T05:54:58Z <p>I asked around, and this is the recommendation someone gave me; it looks reasonable.</p> <p>In your NSCell subclass, in whatever method is invoked by the event loop upon setting a new value, do something like this:</p> <pre><code>- (void)whateverMethodInCellSubclassIsTriggeredByEventLoop:(id)value { NSTableView *tableView = [self controlView]; NSTableColumn *column = [[tableView tableColumns] objectAtIndex:[tableView editedColumn]]; NSInteger rowIndex = [tableView editedRow]; NSDictionary *bindingInfo = [column infoForBinding:NSValueBinding]; id modelObject = nil; if ([controlView isKindOfClass:[NSOutlineView class]]) { NSTreeNode *item = [outlineView itemAtRow:rowIndex]; modelObject = [item representedObject]; } else if ([controlView isKindOfClass:[NSTableView class]]) { NSArrayController *controller = [bindingInfo objectForKey:NSObservedObjectKey]; modelObject = [[controller arrangedObjects] objectAtIndex:rowIndex]; } [modelObject setValue:value forKeyPath:[bindingInfo objectForKey:NSObservedKeyPathKey]]; } </code></pre> <p>This is fairly generic code that leverages the binding info available on the table column to get the model object and key path to which your changes should be pushed, and to use generic KVC to push the changes. It should work for both table and outline views as well as for arbitrary model objects, Core Data or not.</p> http://stackoverflow.com/questions/545768/how-do-you-test-your-cocoa-guis/933675#933675 1 Answer by Chris Hanson for How do you test your Cocoa GUIs? Chris Hanson 2009-06-01T05:40:44Z 2009-06-01T05:40:44Z <p>It depends on what you mean by "testing Cocoa GUIs."</p> <p>If you want tools like the old <a href="http://www.mactech.com/articles/mactech/Vol.12/12.09/UsingVirtualUser/index.html" rel="nofollow" title="Using Virtual User">Virtual User</a> tool included with MPW, then those are few &amp; far between; you'll be looking at tools like Squish and Eggplant. </p> <p>If you want to write <em>unit tests</em> for your application's human interface, I suggest you follow a "<a href="http://eschatologist.net/blog/?p=16" rel="nofollow" title="Trust, but verify.">trust, but verify</a>" approach where you <em>trust</em> that as long as you're making the right connections (according to your framework) that your user can interact properly with your framework. That means you can do the majority of your testing by <em>verifying</em> your model and controller code are hooked up to your views correctly.</p> <p>On my weblog, I've written a couple of examples of how to do this specifically with Cocoa, one for <a href="http://eschatologist.net/blog/?p=10" rel="nofollow" title="Unit testing Cocoa user interfaces: Target-Action">testing user interfaces built with target-action</a>, and one for <a href="http://eschatologist.net/blog/?p=12" rel="nofollow" title="Unit testing Cocoa user interfaces: Cocoa Bindings">testing user interfaces built with Cocoa bindings</a>. (Remember, of course, that the two technologies aren't exclusive: If you want to do drag &amp; drop in a table view managed via Cocoa bindings, you'd also have a data source and probably a delegate hooked up via target-action.)</p> <p>The thing I don't write unit tests for — generally — is the positioning or type of controls in their superview. Sometimes that is important to get and keep correct, however; in that case, I can just query the appropriate properties of the controls and verify them using the standard assertions.</p> <p>What I <strong>virtually never</strong> do is write code to "simulate events." The closest I've ever come to that is constructing a fake drag info object and passing that to an outline view data source to ensure it will deal with drags correctly.</p> http://stackoverflow.com/questions/809187/link-to-a-constants-file-in-cocoa-xcode/814190#814190 5 Answer by Chris Hanson for Link to a constants file in Cocoa / Xcode Chris Hanson 2009-05-02T05:13:25Z 2009-05-02T05:13:25Z <p>You really should be using <code>#import "Constants.h"</code> every place you want to use the constants within it; Objective-C is a C-based language.</p> <p>Furthermore, you aren't "linking" to it either when you put an <code>#import</code> directive in your code or if you put one in your prefix file. In both cases, the contents of the file are included in the text stream fed to the compiler by the preprocessor.</p> <p>Finally, you shouldn't generally add random things to your prefix file. (Panagiotis Korros referred to this as "your pre-compiled header file," but that's slightly incorrect; your prefix file is used to generate the pre-compiled header file.) If you keep your build settings consistent across projects, and use the same name for your prefix files across projects, Xcode will actually cache and re-use the precompiled versions for you very aggressively. This is defeated by putting project-specific contents in them.</p> http://stackoverflow.com/questions/667936/kvc-compliance-for-numbers-in-nsmanagedobject-subclass-coredata/670098#670098 2 Answer by Chris Hanson for KVC compliance for numbers in NSManagedObject subclass (CoreData) Chris Hanson 2009-03-21T22:13:14Z 2009-03-21T22:13:14Z <p>Some initial "Is the computer on?"-type questions:</p> <ol> <li>Does your model specify that the managed object class for your entity is TestClass?</li> <li>Are you sure you spelled <code>numberField</code> correctly when specifying the key in your sort descriptor?</li> <li>Is <code>numberField</code> a transient attribute in your model?</li> </ol> <p>These are the common issues that I can think of that might cause such an error when fetching with a sort descriptor, the first one especially.</p> <p>Also, this won't affect KVC, but your attributes' property declarations should be <code>(copy)</code> rather than <code>(retain)</code> since they're "value" classes that conform to the <code>NSCopying</code> protocol and may have mutable subclasses. You don't want to pass a mutable string in and mutate it underneath Core Data. (Yeah, there's no NSMutableNumber or NSMutableDate in Cocoa, but that doesn't prevent creating MyMutableNumber or MyMutableDate subclasses...)</p> http://stackoverflow.com/questions/633537/cross-platform-development-go-with-a-cross-platform-ui-toolkit-or-native-on-mul/633717#633717 5 Answer by Chris Hanson for Cross-platform development - Go with a cross-platform UI toolkit or native on multiple platforms? Chris Hanson 2009-03-11T08:19:31Z 2009-03-11T08:19:31Z <p>Create your core code in Standard C++ and use Objective-C++ with Cocoa to create your user experience on the Mac and C++/CLI plus C# with WPF to create your user experience on Windows. Follow the platform guidelines for the Mac in your Mac version, for Windows in your Windows version, and don't even bother thinking about trying to share user interface code.</p> <p>One good way to manage this is, instead of just Model-View-Controller, following a Model-Model Controller-View Controller-View architecture. Your Model Controllers are <em>platform-independent</em> and manage the higher-level functionality of your application. (For example, its entire concept of documents, file format, job queues, and so on.) Your View Controllers are <em>platform-dependent</em> and mediate between your Model Controllers and your user experience.</p> <p>Of course you'll probably also want some platform-dependent code at the model level too; for example to use NSOperation on the Mac and thread pools on Windows to implement job queues. Just create your own lightweight abstractions for that sort of thing.</p> http://stackoverflow.com/questions/472377/is-there-a-java-equivalent-to-apples-core-data/498414#498414 2 Answer by Chris Hanson for Is there a Java equivalent to Apple's Core Data? Chris Hanson 2009-01-31T06:35:03Z 2009-01-31T06:35:03Z <p>If you have a Mac, install WebObjects — which is included with Xcode — and you'll have access to the Java-based Enterprise Objects Framework.</p> http://stackoverflow.com/questions/480645/how-up-to-date-is-openstep-as-a-development-environment/482611#482611 4 Answer by Chris Hanson for How up to date is OpenStep as a development Environment? Chris Hanson 2009-01-27T08:09:55Z 2009-01-27T08:09:55Z <p>Cocoa <strong>is</strong> OpenStep. It's a direct descendant. OpenStep became Yellow Box became Cocoa.</p> <p>By asking "has the OpenStep project evolved" it sounds like you're asking about <strong>GNUstep</strong>, not OpenStep.</p> http://stackoverflow.com/questions/474316/hashtables-in-cocoa/476580#476580 2 Answer by Chris Hanson for HashTables in Cocoa Chris Hanson 2009-01-24T20:04:41Z 2009-01-24T20:04:41Z <p>In addition to NSDictionary, also check out NSSet for when you need a collection with no order and no duplicates.</p> http://stackoverflow.com/questions/473977/change-xcode-to-use-custom-installed-version-of-subversion/476568#476568 1 Answer by Chris Hanson for Change Xcode to use custom-installed version of Subversion Chris Hanson 2009-01-24T19:58:20Z 2009-01-24T19:58:20Z <p>Applications in Mac OS X aren't run from a shell, so they won't have any knowledge of shell variables. Just adding something to your <code>$PATH</code> in your <code>.bashrc</code> or <code>.cshrc</code> or whatever won't tell applications about it at all.</p> <p>Furthermore, Xcode 3.0 and later support Subversion directly, rather than by calling through its command-line binary; this means that it will use the Subversion libraries in <code>/usr/lib</code> rather than any you've installed elsewhere.</p> http://stackoverflow.com/questions/459355/whats-the-easiest-way-to-get-the-current-location-of-an-iphone/468561#468561 0 Answer by Chris Hanson for What's the easiest way to get the current location of an iPhone? Chris Hanson 2009-01-22T09:53:38Z 2009-01-22T09:53:38Z <p>There is no such convenience and you shouldn't create your own. "Blocks until it gets the result" is <strong>extremely bad</strong> programming practice on a device like the iPhone. It can take seconds to retrieve a location; you should never make your users wait like that, and delegates ensure they don't.</p> http://stackoverflow.com/questions/456403/can-git-be-integrated-with-xcode/460742#460742 4 Answer by Chris Hanson for Can git be integrated with Xcode? Chris Hanson 2009-01-20T10:29:57Z 2009-01-20T10:29:57Z <p>Xcode doesn't have a public plug-in API, so no, there's no way to directly add support for git to Xcode.</p> <p>You can, however, create scripts for Xcode's script menu that can perform various git operations.</p> http://stackoverflow.com/questions/454703/mac-os-x-what-causes-the-spinning-beach-ball/454711#454711 12 Answer by Chris Hanson for Mac OS X: what causes the spinning beach ball? Chris Hanson 2009-01-18T05:38:46Z 2009-01-18T05:38:46Z <p>The window server will show the spinning wait cursor when the frontmost application, or the application that has a window under the mouse pointer, has not responded to events from the window server within a certain window of time.</p> <p>To avoid the spinning wait cursor, an application needs to service events in a timely fashion. There's no way around this window server behavior, and for good reason: Applications on Mac OS X aren't ever supposed to be unresponsive to the user.</p> http://stackoverflow.com/questions/442396/how-to-give-title-to-nspersistentdocument-window/443774#443774 3 Answer by Chris Hanson for How to give title to NSPersistentDocument window Chris Hanson 2009-01-14T16:55:47Z 2009-01-14T16:55:47Z <p>You don't change the title, your users do by saving documents.</p> http://stackoverflow.com/questions/441005/exist-a-generic-library-of-validators-for-obj-c/442110#442110 3 Answer by Chris Hanson for Exist a generic library of validators for obj-c? Chris Hanson 2009-01-14T06:33:48Z 2009-01-14T06:33:48Z <p>There is a standard <em>validation pattern</em> in Cocoa, including Cocoa Touch, called <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/Validation.html" rel="nofollow" title="Key-Value Validation (iPhone)">Key-Value Validation</a> that you should conform to if you want to validate user input other than through an NSFormatter.</p> <p>In essence, for a property <code>name</code> that you want validated, you implement a method following this pattern:</p> <pre><code>- (BOOL)validateName:(id *)ioValue error:(NSError **)error; </code></pre> <p>Then, when you want to validate a property before setting it from your UI, you just use:</p> <pre><code>NSString *proposedName = [[nameField.stringValue copy] autorelease]; NSError *nameError; if ([person validateValue:&amp;proposedName forKey:@"name" error:&amp;nameError]) { person.name = proposedName; } else { // present nameError to the user in a reasonable way } </code></pre> <p>Note that you <strong>do not</strong> invoke <code>-validateValue:forKey:error:</code> or <code>-validateName:error:</code> method in your <code>-setName:</code> method. Instead, you invoke your <code>-setName:</code> method (as I do via dot syntax above) once you know the value you're passing for it will be valid.</p> <p>Also, read the document on Key-Value Validation that I mentioned above to understand why <code>proposedName</code> is an autoreleased copy of a field's string value, instead of just its string value.</p> <p>If you're implementing something more complicated than per-property validation, such as whole-object validation or even object graph validation, be sure to see how the Core Data framework on Mac OS X handles it. </p> http://stackoverflow.com/questions/432491/returning-a-pointer-to-memory-allocated-within-a-function-in-cocoa-objective-c/432511#432511 3 Answer by Chris Hanson for Returning a pointer to memory allocated within a function in Cocoa Objective-C. Chris Hanson 2009-01-11T07:31:32Z 2009-01-11T07:31:32Z <p>Functions in Cocoa obey the same memory management rules as everything else in Cocoa. Your first example is perfectly fine.</p> http://stackoverflow.com/questions/426979/how-do-i-create-nscolor-instances-that-exactly-match-those-in-a-photoshop-ui-mock/427381#427381 3 Answer by Chris Hanson for How do I create NSColor instances that exactly match those in a Photoshop UI mockup? Chris Hanson 2009-01-09T08:06:27Z 2009-01-09T08:06:27Z <p>There's no such thing as a "pure" RGB color that's consistent from one display to the next. Unless you're working in a standardized color space, the numbers that show up for a color on one display will probably render slightly differently on another.</p> <p>Have your designer convert your mock-ups to a standard color space such as sRGB. Then you can use the methods on NSColor that take not just component values but the color space the components are in; this will get you colors that should look similar on any display.</p> <p>In other words, a color swatch made from (R, G, B) = (1.0, 1.0, 1.0) in Photoshop using sRGB should look virtually identical to a color swatch drawn using a color you get this way:</p> <pre><code>NSColorSpace *sRGB = [NSColorSpace sRGBColorSpace]; CGFloat components[3] = { 1.0, 1.0, 1.0 }; NSColor *sRGBRed = [NSColor colorWithColorSpace:sRGB components:&amp;components count:3]; </code></pre> <p>Note though that <code>+[NSColorSpace sRGBColorSpace]</code> is only available on Mac OS X 10.5 Leopard and above. If you still need to run on Tiger, you could write a little utility app that runs on 10.5 and converts the canonical sRGB colors to the calibrated RGB space:</p> <pre><code>NSColor *calibratedColor = [sRGBRed colorUsingColorSpaceName:NSCalibratedRGBColorSpace]; </code></pre> <p>Regardless of whether you use sRGB or the calibrated space, once you have a set of colors, you could put them in an NSColorList that you write to a file and then load from your application's resources at runtime.</p> http://stackoverflow.com/questions/426607/pyobjc-vs-rubycocoa-for-mac-development-which-is-more-mature/426703#426703 7 Answer by Chris Hanson for PyObjc vs RubyCocoa for Mac development: Which is more mature? Chris Hanson 2009-01-09T01:08:54Z 2009-01-09T01:08:54Z <p>While you say you "don't have time" to learn technologies independently the fastest route to learning Cocoa will still be to learn it in its native language: Objective-C. Once you understand Objective-C and have gotten over the initial learning curve of the Cocoa frameworks you'll have a much easier time picking up either PyObjC or RubyCocoa.</p> http://stackoverflow.com/questions/413535/nsnumber-storing-float-please-no-scientific-notation/413893#413893 8 Answer by Chris Hanson for NSNumber storing float. Please NO scientific notation!! Chris Hanson 2009-01-05T17:39:56Z 2009-01-05T17:39:56Z <p>Just because it's called a number doesn't mean a "telephone number" is a number in the same sense that "5" or "pi" are.</p> <p>Either you should treat a telephone number as a string, or you should create a TelephoneNumber model class to represent each one.</p> http://stackoverflow.com/questions/1788879/pbl-xcode-c-typedef-struct-toto-toto/1789006#1789006 Comment by Chris Hanson on Pbl xcode C++ typedef struct toto toto Chris Hanson 2009-11-25T09:21:21Z 2009-11-25T09:21:21Z Stack Overflow is not a discussion forum; &quot;bumping&quot; your question like this is inappropriate. http://stackoverflow.com/questions/1788059/target-conditional-library-search-paths-xcode/1788113#1788113 Comment by Chris Hanson on target conditional library search paths xcode Chris Hanson 2009-11-24T20:30:25Z 2009-11-24T20:30:25Z A static library isn't compiled in, it's linked. Just being in the search paths isn't sufficient to cause it to be linked; it needs to be specified either in the Link Frameworks &amp; Libraries build phase in your target, or in OTHER_LDFLAGS (as I show above, i.e. -lfoo). If it's not in either of those, it won't be linked. http://stackoverflow.com/questions/1318509/bdd-in-objective-c/1318536#1318536 Comment by Chris Hanson on BDD in Objective-C Chris Hanson 2009-09-26T20:16:51Z 2009-09-26T20:16:51Z The person asking the question is talking about Objective-C and OCUnit, which expects test methods themselves to begin with &quot;test&quot; - that's how it knows what methods are test methods, since Objective-C doesn't have annotations like C# and Java do. http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319912#1319912 Comment by Chris Hanson on How to organize unit testing of a library project in Xcode? Chris Hanson 2009-08-24T06:01:37Z 2009-08-24T06:01:37Z Thanks for pointing to the new article! http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319915#1319915 Comment by Chris Hanson on How to organize unit testing of a library project in Xcode? Chris Hanson 2009-08-24T04:33:15Z 2009-08-24T04:33:15Z I'm here to help people. Environments work differently, as do languages and frameworks. I'm certain that Jonathan understands that. If you want features or enhancements in Xcode, Cocoa, or Objective-C, please file requests at <a href="http://bugreport.apple.com/" rel="nofollow">bugreport.apple.com</a> - thanks. http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319912#1319912 Comment by Chris Hanson on How to organize unit testing of a library project in Xcode? Chris Hanson 2009-08-24T00:10:04Z 2009-08-24T00:10:04Z Please don't point people to &quot;Test Driving Your Code With OCUnit&quot; - it's obsolete, and has been grossly out of date since a couple months after it was published. For one thing, it tells people to download OCUnit, but OCUnit has been included with Xcode since WWDC 2005 when Xcode 2.1 was released. Please point people to &quot;Automated Unit Testing with Xcode 3 and Objective-C&quot; <a href="http://developer.apple.com/mac/articles/tools/unittestingwithxcode3.html" rel="nofollow">developer.apple.com/mac/articles/&hellip;</a> instead. http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319915#1319915 Comment by Chris Hanson on How to organize unit testing of a library project in Xcode? Chris Hanson 2009-08-24T00:03:48Z 2009-08-24T00:03:48Z Anyone who claims Xcode &quot;hasn't changed all that much since [NeXT]&quot; knows not about what they speak. Xcode is quite different from NeXT's old ProjectBuilder, and also quite different from the (newly-written) Project Builder that came with Mac OS X. http://stackoverflow.com/questions/33720/change-templates-in-xcode/33743#33743 Comment by Chris Hanson on Change templates in XCode Chris Hanson 2009-08-23T01:06:51Z 2009-08-23T01:06:51Z If you don't have the paths above, you can create them. Don't change the templates in /Developer, because they won't necessarily survive uninstall and reinstall of the tools. Treat it like /System. http://stackoverflow.com/questions/1153778/how-to-set-these-uitableview-properties-in-interface-builder Comment by Chris Hanson on how to set these uitableview properties in interface builder? Chris Hanson 2009-08-13T09:42:03Z 2009-08-13T09:42:03Z Use separate questions to ask separate questions, don't ask them all in one question. http://stackoverflow.com/questions/1194010/copying-an-nsarray-with-mutable-copies-of-the-original-elements/1196301#1196301 Comment by Chris Hanson on Copying an NSArray with mutable copies of the original elements Chris Hanson 2009-07-30T07:24:17Z 2009-07-30T07:24:17Z Much better, thanks! http://stackoverflow.com/questions/1194010/copying-an-nsarray-with-mutable-copies-of-the-original-elements/1196301#1196301 Comment by Chris Hanson on Copying an NSArray with mutable copies of the original elements Chris Hanson 2009-07-30T04:57:05Z 2009-07-30T04:57:05Z Ew ew ew, please don't even mention things like using -valueForKey: this way where newbies can see and be misled by it. (They will, you know: &quot;On the Internet I read the way to do mutable copies was...&quot; is how it will be remembered.) http://stackoverflow.com/questions/1148555/excbadaccess-error-when-cell-begins-scrolling-back-in-view Comment by Chris Hanson on "EXC_BAD_ACCESS" error when cell begins scrolling back in view? Chris Hanson 2009-07-19T01:01:03Z 2009-07-19T01:01:03Z You should really follow the canonical Objective-C coding style that you see in the iPhone and Mac OS X sample code; it will make your code easier for others to read and help you with. http://stackoverflow.com/questions/1049674/how-do-i-edit-an-interface-builder-object-programmatically Comment by Chris Hanson on How do I edit an interface builder object programmatically? Chris Hanson 2009-07-07T01:39:06Z 2009-07-07T01:39:06Z It's actually recommended that the IBOutlet macro be on the property, not the instance variable; this lets the instance variable have a different name and emphasizes the use of KVC to set the outlet. http://stackoverflow.com/questions/973333/how-do-i-put-the-m-in-mvc-using-interface-builder/979692#979692 Comment by Chris Hanson on How do I put the 'M' in MVC using Interface Builder Chris Hanson 2009-07-07T01:37:46Z 2009-07-07T01:37:46Z Serious developers definitely use IB. As answered, it's just an issue with the root view controller of the application, not with all view controllers. You can still lay out everything managed by each particular view controller in IB just fine. http://stackoverflow.com/questions/1082284/difference-between-accessing-property-methods-and-class-fields-objective-c/1082288#1082288 Comment by Chris Hanson on Difference between accessing property methods and class fields (Objective-C) Chris Hanson 2009-07-05T05:39:15Z 2009-07-05T05:39:15Z This is incorrect and is guaranteed to mislead people. Please choose a different answer. In Objective-C, <code>self.bar</code> is <i>always</i> equivalent to <code>[self bar]</code> and just plain <code>bar</code> <i>never</i> is.