User Evan DiBiase - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T12:58:04Zhttp://stackoverflow.com/feeds/user/6274http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/398010/linking-a-bundle-target-to-a-command-line-target-in-xcode0Linking a Bundle Target to a Command-Line Target in XcodeEvan DiBiase2008-12-29T16:12:21Z2009-07-04T01:00:03Z
<p>I have a project in Xcode that contains multiple targets. One of these builds a sync schema bundle, and another one builds a Foundation command-line tool that initiates a sync session using the schema defined in the bundle.</p>
<p>The schema bundle template creates <code>Schema-strings.h</code> and <code>Schema-strings.m</code> files, which contain constants for data class names, entity names, and attribute names, and I'd like to use these constants in my command-line tool's code.</p>
<p>How do I configure the targets to make this possible?</p>
http://stackoverflow.com/questions/548289/what-is-the-type-of-an-enum-whose-values-appear-to-be-strings7What is the type of an enum whose values appear to be strings?Evan DiBiase2009-02-14T00:57:59Z2009-06-17T03:24:14Z
<p>I am working with Apple's <code>ScriptingBridge</code> framework, and have generated a header file for iTunes that contains several <code>enum</code>s like this:</p>
<pre><code>typedef enum {
iTunesESrcLibrary = 'kLib',
iTunesESrcIPod = 'kPod',
iTunesESrcAudioCD = 'kACD',
iTunesESrcMP3CD = 'kMCD',
iTunesESrcDevice = 'kDev',
iTunesESrcRadioTuner = 'kTun',
iTunesESrcSharedLibrary = 'kShd',
iTunesESrcUnknown = 'kUnk'
} iTunesESrc;
</code></pre>
<p>My understanding was that <code>enum</code> values had to be integer-like, but this definition seems to violate that rule. Furthermore, it seems as though treating these <code>enum</code> values as integers (in an <code>NSPredicate</code>, for example) doesn't do the right thing.</p>
<p>I added the <code>enum</code> declaration above to a C file with an empty <code>main</code> function, and it compiled using <code>i686-apple-darwin9-gcc-4.0.1</code>. So, while these kinds of <code>enum</code>s may not conform to the C standard (as Parappa points out below), they are at least being compiled to <em>some</em> type by gcc.</p>
<p>So, what is that type, and how can I use it, for instance, in a format string?</p>
http://stackoverflow.com/questions/667994/why-do-nsstring-and-nslog-appear-to-handle-c-and-lc-and-s-and-ls-differentl0Why do NSString and NSLog appear to handle %C and %lc (and %S and %ls) differently?Evan DiBiase2009-03-20T21:02:46Z2009-03-21T05:25:04Z
<p>Apple's <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html" rel="nofollow">String Format Specifiers</a> document claims,</p>
<blockquote>
<p>The format specifiers supported by the NSString formatting methods and CFString formatting functions follow the <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html" rel="nofollow">IEEE printf specification</a>; … You can also use these format specifiers with the NSLog function.</p>
</blockquote>
<p>But, while the <code>printf</code> specification defines <code>%C</code> as an equivalent for <code>%lc</code> and <code>%S</code> as an equivalent for <code>%ls</code>, only <code>%C</code> and <code>%S</code> appear to work correctly with <code>NSLog</code> and <code>+[NSString stringWithFormat:]</code>.</p>
<p>For example, consider the following code:</p>
<pre><code>#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
unichar str[3];
str[0] = 63743;
str[1] = 33;
str[2] = (unichar)NULL;
NSLog(@"NSLog");
NSLog(@"%%S: %S", str);
NSLog(@"%%ls: %ls", str);
NSLog(@"%%C: %C", str[0]);
NSLog(@"%%lc: %lc", str[0]);
NSLog(@"\n");
NSLog(@"+[NSString stringWithFormat:]");
NSLog(@"%%S: %@", [NSString stringWithFormat:@"%S", str]);
NSLog(@"%%ls: %@", [NSString stringWithFormat:@"%ls", str]);
NSLog(@"%%C: %@", [NSString stringWithFormat:@"%C", str[0]]);
NSLog(@"%%lc: %@", [NSString stringWithFormat:@"%lc", str[0]]);
[pool drain];
return 0;
}
</code></pre>
<p>Given the <code>printf</code> specification, I would expect each of the above pairs to print the same thing. But, when I run the code, I get the following output:</p>
<pre><code>2009-03-20 17:00:13.363 UnicharFormatSpecifierTest[48127:10b] NSLog
2009-03-20 17:00:13.365 UnicharFormatSpecifierTest[48127:10b] %S: !
2009-03-20 17:00:13.366 UnicharFormatSpecifierTest[48127:10b] %ls: ˇ¯!
2009-03-20 17:00:13.366 UnicharFormatSpecifierTest[48127:10b] %C:
2009-03-20 17:00:13.367 UnicharFormatSpecifierTest[48127:10b] %lc:
2009-03-20 17:00:13.367 UnicharFormatSpecifierTest[48127:10b]
2009-03-20 17:00:13.368 UnicharFormatSpecifierTest[48127:10b] +[NSString stringWithFormat:]
2009-03-20 17:00:13.368 UnicharFormatSpecifierTest[48127:10b] %S: !
2009-03-20 17:00:13.369 UnicharFormatSpecifierTest[48127:10b] %ls: ˇ¯!
2009-03-20 17:00:13.369 UnicharFormatSpecifierTest[48127:10b] %C:
2009-03-20 17:00:13.370 UnicharFormatSpecifierTest[48127:10b] %lc:
</code></pre>
<p>Am I doing something wrong, or is this a bug in Apple's code?</p>
http://stackoverflow.com/questions/500869/nsxmlparser-and-error-constants/501124#5011240Answer by Evan DiBiase for NSXMLParser and error constantsEvan DiBiase2009-02-01T16:45:50Z2009-02-01T16:45:50Z<p>That <code>enum</code> defines all of the <code>NSXMLParserError</code>s. If you want (slightly) more detail, you can click on a particular constant in the list.</p>
http://stackoverflow.com/questions/442808/techniques-for-implementing-hash-on-mutable-cocoa-objects/443045#4430452Answer by Evan DiBiase for Techniques for implementing -hash on mutable Cocoa objectsEvan DiBiase2009-01-14T14:02:33Z2009-01-14T14:18:50Z<p>My reading of the documentation is that a mutable object's value for <code>hash</code> <em>can</em> (and probably should) change when it is mutated, but <em>should not</em> change when the object hasn't been mutated. The portion of the documentation to which to refer, therefore, is saying, "Don't mutate objects that are stored in a collection, because that will cause their <code>hash</code> value to change."</p>
<p>To quote directly from the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/hash" rel="nofollow">NSObject documentation for <code>hash</code></a>:</p>
<blockquote>
<p>If a mutable object is added to a
collection that uses hash values to
determine the object’s position in the
collection, the value returned by the
hash method of the object must not
change while the object is in the
collection. <em>Therefore, either the hash
method must not rely on any of the
object’s internal state information or
you must make sure the object’s
internal state information does not
change while the object is in the
collection</em>.</p>
</blockquote>
<p>(Emphasis mine.)</p>
http://stackoverflow.com/questions/431797/programmatically-update-an-attribute-in-core-data/431864#4318641Answer by Evan DiBiase for Programmatically Update an attribute in Core DataEvan DiBiase2009-01-10T22:12:10Z2009-01-10T22:18:22Z<p>The <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/CoreData/Articles/cdUsingMOs.html" rel="nofollow">Apple documentation on using managed objects in Core Data</a> likely has your answer. In short, though, you should be able to do something like this:</p>
<pre><code>NSError *saveError;
[bookTwo setTitle:@"BarBar"];
if (![managedObjectContext save:&saveError]) {
NSLog(@"Saving changes to book book two failed: %@", saveError);
} else {
// The changes to bookTwo have been persisted.
}
</code></pre>
<p>(Note: <code>bookTwo</code> must be a managed object that is associated with <code>managedObjectContext</code> for this example to work.)</p>
http://stackoverflow.com/questions/398010/linking-a-bundle-target-to-a-command-line-target-in-xcode/398775#3987750Answer by Evan DiBiase for Linking a Bundle Target to a Command-Line Target in XcodeEvan DiBiase2008-12-29T21:43:07Z2008-12-29T21:43:07Z<p>After stepping away from the computer for a while, I realized that one solution to this problem was to add <code>Schema-strings.m</code> to the "Compile Sources" phase of the command-line tool's target. But I'd still be interested in hearing about any other ways to get a similar result.</p>
http://stackoverflow.com/questions/294194/sync-services-client-and-schema-xcode-project-structure0Sync Services Client and Schema Xcode Project StructureEvan DiBiase2008-11-16T18:33:22Z2008-11-16T22:57:38Z
<p>I'm starting work on a project that will be primarily acting as a Sync Services client. Ideally, the project will have two components: a custom schema bundle and a preference pane.</p>
<p>As a first step, I've created an Xcode project for the schema bundle. But now I find myself ready to start writing the code for the preference pane and the client, and I'm not sure what the best way is to integrate it with the project I already have.</p>
<p>What approaches have you found to work well in these kinds of situations?</p>
http://stackoverflow.com/questions/218399/ajax-get-requests-use-parameters-or-put-data-in-url/218417#21841711Answer by Evan DiBiase for Ajax GET requests: use parameters or put data in URL?Evan DiBiase2008-10-20T13:27:27Z2008-10-20T13:51:30Z<p>One advantage to using the <code>parameters</code> argument is that you can pass it a <code>Hash</code>-like object instead of as a string. (If you do this, though, make sure so set the <code>method</code> parameter to <code>"GET"</code>, as the default method for Prototype Ajax requests is POST; see <a href="http://www.prototypejs.org/learn/introduction-to-ajax" rel="nofollow">the Prototype Introduction to Ajax</a> for more details.)</p>
<p>Another advantage, which is more in-line with the example that you gave, is that you can separate the request URL from the options that are sent to it. This might be useful if, for example, you need to send a bunch of similar requests to several different URLs. (In that case, having a common parameters <code>Hash</code> that you modify for each request might be more useful, than using a parameter string, as well.)</p>
<p>For more information, see <a href="http://www.prototypejs.org/api/ajax/options" rel="nofollow">the Prototype documentation of Ajax options</a>.</p>
http://stackoverflow.com/questions/167487/nsthread-and-uiviewcontroller-interaction/167644#1676442Answer by Evan DiBiase for NSThread and UIViewController interactionEvan DiBiase2008-10-03T16:12:43Z2008-10-03T16:12:43Z<p>As the documentation says, "If you’re not sure about a particular graphical operation, plan on doing it from your main thread."</p>
<p>A good rule of thumb to follow is that, if a class isn't explicitly documented as being thread-safe, then it's probably not. Additionally, code that's not documented as being thread-safe may not fail fast when used by multiple threads, but may simply exhibit undefined behavior, as you saw.</p>
http://stackoverflow.com/questions/149388/low-level-details-of-the-implementation-of-performselectoronmainthread/149448#1494482Answer by Evan DiBiase for Low-level details of the implementation of performSelectorOnMainThread:Evan DiBiase2008-09-29T16:21:12Z2008-10-01T14:22:52Z<p>The <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/performSelectorOnMainThread:withObject:waitUntilDone:" rel="nofollow">documentation for NSObject's <code>performSelectorOnMainThread:withObject:waitUntilDone:</code> method</a> says:</p>
<blockquote>
<p>This method queues the message on the run loop of the main thread using the default run loop modes—that is, the modes associated with the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSRunLoop_Class/Reference/Reference.html#//apple_ref/c/data/NSRunLoopCommonModes" rel="nofollow">NSRunLoopCommonModes</a> constant. As part of its normal run loop processing, the main thread dequeues the message (assuming it is running in one of the default run loop modes) and invokes the desired method.</p>
</blockquote>
http://stackoverflow.com/questions/149021/nscoder-vs-nsdictionary-when-do-you-use-what/149175#1491756Answer by Evan DiBiase for NSCoder vs NSDictionary, when do you use what?Evan DiBiase2008-09-29T15:27:49Z2008-09-29T15:35:42Z<p>Apple's documentation on <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Archiving/Concepts/objectgraphs.html" rel="nofollow">object graphs</a> has this to say:</p>
<blockquote>
<p>Mac OS X serializations store a simple hierarchy of value objects, such as dictionaries, arrays, strings, and binary data. The serialization only preserves the values of the objects and their position in the hierarchy. Multiple references to the same value object might result in multiple objects when deserialized. The mutability of the objects is not maintained.</p>
<p>…</p>
<p>Mac OS X archives store an arbitrarily complex object graph. The archive preserves the identity of every object in the graph and all the relationships it has with all the other objects in the graph. When unarchived, the rebuilt object graph should, with few exceptions, be an exact copy of the original object graph.</p>
</blockquote>
<p>The way I interpret this is that, if you want to store simple <em>values</em>, serialization (using an NSDictionary, for example) is a fine way to go. If you want to store an <em>object graph</em> of arbitrary types, with uniqueness and mutability preserved, using archives (with NSCoder, for example) is your best bet.</p>
<p>You may also want to read Apple's <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Archiving/" rel="nofollow">Archives and Serializations Programming Guide for Cocoa</a>, of which the aforelinked page on object graphs is a part, as it covers this topic well.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146340#14634029Answer by Evan DiBiase for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Evan DiBiase2008-09-28T17:49:09Z2008-09-28T22:06:42Z<p>I'm a big fan of the Open Quickly feature, which is particularly good in Xcode 3.1 and later. When you want to open a file or a symbol definition that's in your project or in a framework, just hit ⌘⇧D, type a bit of the file or symbol's name, use the up and down arrows to pick to the right result (if need be), and then hit Return to open the file or navigate to the symbol definition.</p>
<p>Also, something I didn't know about Xcode until two minutes ago (when <a href="http://stackoverflow.com/users/23113/schwa">schwa</a> pointed it out in a comment) is that, if the editor's text caret is inside of a word when Open Quickly is invoked, that word will be used as the Open Quickly search term.</p>
http://stackoverflow.com/questions/93091/why-cant-strings-be-mutable-in-java-and-net/93170#931707Answer by Evan DiBiase for Why can't strings be mutable in Java and .NET?Evan DiBiase2008-09-18T14:41:41Z2008-09-18T14:41:41Z<p>One factor is that, if strings were mutable, objects storing strings would have to be careful to store copies, lest their internal data change without notice. Given that strings are a fairly primitive type like numbers, it is nice when one can treat them as if they were passed by value, even if they are passed by reference (which also helps to save on memory).</p>
http://stackoverflow.com/questions/68592/good-ways-to-test-a-unit-that-communicates-via-http1Good ways to test a unit that communicates via HTTPEvan DiBiase2008-09-16T01:37:18Z2008-09-18T07:28:06Z
<p>Often, I find myself wanting to write a unit test for a portion of code that accesses HTTP resources as part of its normal function. Have you found any good ways to write these kinds of tests?</p>
http://stackoverflow.com/questions/667994/why-do-nsstring-and-nslog-appear-to-handle-c-and-lc-and-s-and-ls-differentl/668789#668789Comment by Evan DiBiase on Why do NSString and NSLog appear to handle %C and %lc (and %S and %ls) differently?Evan DiBiase2009-03-21T17:31:41Z2009-03-21T17:31:41ZThat's about how I'd characterize it, as well. Thanks again for the help!http://stackoverflow.com/questions/667994/why-do-nsstring-and-nslog-appear-to-handle-c-and-lc-and-s-and-ls-differentl/668789#668789Comment by Evan DiBiase on Why do NSString and NSLog appear to handle %C and %lc (and %S and %ls) differently?Evan DiBiase2009-03-21T12:12:22Z2009-03-21T12:12:22ZThanks; that makes a lot of sense! I think I would characterize this as a bug in the documentation, then, because the NSString formatting methods clearly do not follow the printf specification in this case. Does that seem like a fair assessment?http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146340#146340Comment by Evan DiBiase on What are those little Xcode tips & tricks you wish you knew about 2 years ago?Evan DiBiase2009-03-20T05:29:06Z2009-03-20T05:29:06ZThe text caret is just the vertical bar inside of an area of text that indicates where your keyboard actions would take place.http://stackoverflow.com/questions/548289/what-is-the-type-of-an-enum-whose-values-appear-to-be-strings/548293#548293Comment by Evan DiBiase on What is the type of an enum whose values appear to be strings?Evan DiBiase2009-02-14T01:09:26Z2009-02-14T01:09:26ZThat's a good point; I couldn't find anything about these sorts of enums in the C standards. But I modified the question to mention that this code does compile as C with i686-apple-darwin9-gcc-4.0.1, and it's the type that gcc's generating that I'm interested in learning more about.http://stackoverflow.com/questions/507803/nsthread-crashes-on-second-call-iphone/507901#507901Comment by Evan DiBiase on NSThread crashes on second call (iPhone)Evan DiBiase2009-02-03T16:58:07Z2009-02-03T16:58:07ZBut I do think you're on the right track, though; it's possible that data is getting garbage collected or released after the first call but before the second.http://stackoverflow.com/questions/507803/nsthread-crashes-on-second-call-iphone/507901#507901Comment by Evan DiBiase on NSThread crashes on second call (iPhone)Evan DiBiase2009-02-03T16:57:23Z2009-02-03T16:57:23ZThe alloc acts as a retain, so adding an extra retain call will cause a leak (because the corresponding [data release] will decrement the retain count once, but it has been incremented by both the alloc and the explicit retain).http://stackoverflow.com/questions/500869/nsxmlparser-and-error-constantsComment by Evan DiBiase on NSXMLParser and error constantsEvan DiBiase2009-02-01T16:46:45Z2009-02-01T16:46:45ZWhile I answered below with as much information as I could, I don't think I got at what you were asking. Is there some specific kind of information about an NSXMLParserError that you're looking for?http://stackoverflow.com/questions/442808/techniques-for-implementing-hash-on-mutable-cocoa-objects/443045#443045Comment by Evan DiBiase on Techniques for implementing -hash on mutable Cocoa objectsEvan DiBiase2009-01-14T15:14:56Z2009-01-14T15:14:56ZOn re-reading the question: are you asking if there's a way to keep the hash and isEqual: contract while mutating an object in a collection, or just whether it's possible to keep the contract in general? I was responding to the second question, which may not be what you were asking.http://stackoverflow.com/questions/442808/techniques-for-implementing-hash-on-mutable-cocoa-objects/443045#443045Comment by Evan DiBiase on Techniques for implementing -hash on mutable Cocoa objectsEvan DiBiase2009-01-14T15:11:30Z2009-01-14T15:11:30ZIf you're looking for clever tricks for this, I don't think I can help, but note that the documentation says that the hash method must not rely on internal state <i>or</i> the internal state must be guaranteed not to change while in the collection. You can use internal state if you conform to the latter.http://stackoverflow.com/questions/387959/nsstring-property-copy-or-retain/387975#387975Comment by Evan DiBiase on NSString property: copy or retain?Evan DiBiase2008-12-23T02:59:52Z2008-12-23T02:59:52ZI should mention, too, that you need to take the client into consideration. If the client isn't expecting that you'll change their data, you should make a copy when they pass it to you. So, combine that with my previous comment, and I think you arrive at Chris's guidance.http://stackoverflow.com/questions/387959/nsstring-property-copy-or-retain/387975#387975Comment by Evan DiBiase on NSString property: copy or retain?Evan DiBiase2008-12-23T02:53:29Z2008-12-23T02:53:29ZI think the guidance for mutable dictionaries and mutable arrays should be the same: if your class assumes that it's going to be the only one changing the data (or if it has a controlled way of allowing third parties to change it) it should copy the data when it comes from an outside source.http://stackoverflow.com/questions/205386/cocoa-bad-habits/205399#205399Comment by Evan DiBiase on Cocoa Bad HabitsEvan DiBiase2008-10-16T15:39:45Z2008-10-16T15:39:45ZAnd, I should add, I wasn't trying to ding you for using NSException too much. I just wanted to point out that Apple's distinction between NSError and NSException makes sense to me, and that it might help you write code that uses fewer exceptions, if that's your goal.http://stackoverflow.com/questions/205386/cocoa-bad-habits/205399#205399Comment by Evan DiBiase on Cocoa Bad HabitsEvan DiBiase2008-10-16T15:38:31Z2008-10-16T15:38:31ZWhile, of course, you're free to use exceptions and errors as you see fit, <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ErrorHandlingCocoa/CreateCustomizeNSError/chapter_4_section_4.html" rel="nofollow">developer.apple.com/documentation/Cocoa/…</a> recommends the distinction I described for all Cocoa code, not just Apple's code.http://stackoverflow.com/questions/205386/cocoa-bad-habits/205399#205399Comment by Evan DiBiase on Cocoa Bad HabitsEvan DiBiase2008-10-15T16:37:05Z2008-10-15T16:37:05ZOne thing I really like about Cocoa's design is that NSExceptions are defined to be used only for programmer error (like an out-of-bounds index) while NSError is to be used for runtime errors. Since I realized that, I've felt a lot less need to use NSException.