User Quinn Taylor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T11:52:05Z http://stackoverflow.com/feeds/user/120292 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780884/secpkcs12import-from-security-framework-fails-on-os-x-10-6/1781070#1781070 2 Answer by Quinn Taylor for SecPKCS12Import() from Security.framework fails on OS X 10.6 Quinn Taylor 2009-11-23T04:19:00Z 2009-11-30T18:39:32Z <p>Security.framework is most certainly implemented — see the <a href="http://developer.apple.com/mac/library/documentation/Security/Reference/SecurityRefUpdate/" rel="nofollow">Security Reference Update</a> which documents what has changed in the framework in 10.6 and prior. Since you know the headers to use, I assume you've already consulted the <a href="http://developer.apple.com/mac/library/documentation/Security/Reference/SecurityFrameworkReference/" rel="nofollow">Security Framework Reference</a>.</p> <p>Are you sure you're properly importing and linking against the framework? (It's in <code>/System/Library/Security.framework</code>, so you shouldn't have to specify the path.)</p> <p>Does the compiler issue warnings or errors stating that the symbols in SecImportExport.h are undefined? (If not, how do you know they're "declared but undefined"?)</p> <p>When you say that this fails on 10.6, have you tried it on an earlier version of the OS successfully?</p> <p><hr></p> <p><strong>EDIT</strong>: Okay, since you're using other parts of Security.framework successfully, and the APIs and constants you're trying to use are 10.6 only, it doesn't seem like a linking issue. What do your import look like? Are you sure you're importing <code>SecImportExport.h</code> properly? The constants are declared just above the <code>SecPKCS12Import()</code> function, so if you get warnings for the constants, you should get one for the function being undefined as well.</p> <p><hr></p> <p><strong>EDIT</strong>: I have confirmed with a member of the team at Apple that works on Security.framework that this functionality is not currently implemented. Please file a bug to gripe about this at <a href="http://bugreport.apple.com" rel="nofollow">http://bugreport.apple.com</a> against component <code>Security (New Bugs)</code>, version <code>X</code>. Include the URL to this question in your report. Sorry there's not a better answer at the moment.</p> http://stackoverflow.com/questions/1777927/getting-excbadaccess/1778000#1778000 1 Answer by Quinn Taylor for Getting “EXC_BAD_ACCESS” Quinn Taylor 2009-11-22T06:25:09Z 2009-11-22T06:25:09Z <p>Since the error occurs when draining the pool, I might be suspicious that you've already deallocated the object by that point, and the object is over-released (although generally you'll get a "malloc double free" error for this) or perhaps the memory has already been overwritten by something else. I'd suggest running it with zombies enabled, as in <a href="http://stackoverflow.com/questions/971249#979184">this answer</a> — if you have Snow Leopard you can use the Zombies tool in Instruments from Xcode's <strong>Run</strong> menu. Good luck!</p> http://stackoverflow.com/questions/1775903/nsxmlparser-question/1775995#1775995 2 Answer by Quinn Taylor for NSXMLParser Question Quinn Taylor 2009-11-21T16:48:16Z 2009-11-21T16:55:13Z <p>If you implement both delegate methods, shouldn't you receive the latter notification first? If so, you can associate the URL string with the NSURLConnection (which will assumedly be different for each site) in an instance variable and use it when you get the data afterward. I would generally suggest a dictionary, although you can't use the connection as a key in an NS(Mutable)Dictionary since it doesn't conform to NSCopying. You could use the URL string as the key, but that complicates lookup. Perhaps a pair of arrays?</p> <p>More to the point though, why write an RSS reader from scratch? On 10.5+ you can <a href="http://developer.apple.com/mac/library/documentation/InternetWeb/Conceptual/PubSub/" rel="nofollow">use the PubSub.framework to do the work for you</a>. This framework handles all sorts of weird formats and invalid XML, and can really save you a lot of time. Maybe it's a good fit for what you're trying to do?</p> http://stackoverflow.com/questions/1774857/assigning-variable-values-to-nstextfields-in-objective-c/1774896#1774896 1 Answer by Quinn Taylor for Assigning variable values to NSTextFields in Objective-C Quinn Taylor 2009-11-21T08:02:41Z 2009-11-21T16:39:55Z <p>A more effective way to see if it's being called is to set a breakpoint (double click in the gutter to the left of the editor) and debug the app instead. The first suggestion is always to sanity-check your connections.</p> <p>In addition, you'll probably want to use this line instead:</p> <pre><code>[userOutput setStringValue:[userInput stringValue]]; </code></pre> <p>(Note that <code>-stringValue</code> is inherited from <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSControl%5FClass/" rel="nofollow">NSControl</a>, just like <code>-setStringValue:</code> is.)</p> <p><hr></p> <p>EDIT: It might help to make sure you're actually instantiating the controller object. You can add an <code>-awakeFromNib</code> method to the controller and put a breakpoint in it to see whether this is the case. (See <a href="http://www.cocoadev.com/index.pl?AwakeFromNib" rel="nofollow">http://www.cocoadev.com/index.pl?AwakeFromNib</a>) If that method isn't getting called, then the connections specified in IB won't be made, either.</p> http://stackoverflow.com/questions/1771927/cg-nspoint-like-integer-tuple-type/1772550#1772550 6 Answer by Quinn Taylor for CG/NSPoint-like integer tuple type? Quinn Taylor 2009-11-20T18:54:32Z 2009-11-20T18:54:32Z <p>I'm not aware of one that serves your exact needs. You could certainly use <code>CGPoint</code> or <code>NSPoint</code>, but since you know the values will be discrete integers, why waste the precision on a non-existent fractional part? In addition, repeated casts to integer values would get old quickly. You'd be much better served to create your own typedef using integer types, like so:</p> <pre><code>typedef struct _DiscretePoint { NSInteger x; NSInteger y; } DiscretePoint; </code></pre> <p>You could also use <code>int32_t</code> instead of <code>NSInteger</code> if you know the values will never exceed the 32-bit range — this will conserve some space in 64-bit mode. (See <a href="http://stackoverflow.com/questions/13725/in-cocoa-do-you-prefer-nsinteger-or-just-regular-int-and-why">this SO question</a> for details about <code>NSInteger</code>, etc.)</p> http://stackoverflow.com/questions/1694870/typing-methods-with-id/1705579#1705579 1 Answer by Quinn Taylor for Typing methods with `id` Quinn Taylor 2009-11-10T04:15:24Z 2009-11-10T04:15:24Z <p>A lot of NeXT-era code followed this convention of excluding the <code>(id)</code> for the return type, and most of that code carried over into OS X. I find it confusing when the code excludes the type, and saving 4-5 characters is pretty pointless nowadays anyway. My guess is that old habits die hard — my experience is that best practice is to always include the return type. It certainly makes things clearer for newcomers to the language and makes fewer assumptions.</p> http://stackoverflow.com/questions/1417893/encrypted-nsdata-to-nsstring-in-obj-c/1417947#1417947 12 Answer by Quinn Taylor for Encrypted NSData to NSString in obj-c? Quinn Taylor 2009-09-13T15:05:07Z 2009-11-07T03:39:19Z <p>First off, <strong>DO NOT</strong> use <code>-[NSData description]</code> to create an NSString for such purposes. (It's best to treat <code>-description</code> as debugging output. I apologize if <a href="http://stackoverflow.com/questions/1400246/aes-encryption-for-an-nsstring-on-the-iphone">my previous answer</a> misled you, I was merely printing the description to demonstrate that the NSData can be encrypted and decrypted.) Instead, use NSString's <code>-dataUsingEncoding:</code> and <code>-initWithData:encoding:</code> methods to convert between NSData and NSString. Even with these, note that AES-encrypted data will probably not translate well into strings as-is — some byte sequences just won't play nicely, so it's a good idea to encode the data before creating the string.</p> <p>I'd suggest you try <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">Base64 encoding</a> the NSData, since Base64 data can always be represented as an ASCII string. (Of course, when you do that, you'll have to decode from Base64 before decrypting.)</p> <p>Here are some helpful resources...</p> <ul> <li><a href="http://colloquy.info/" rel="nofollow">Colloquy</a> has some code that does encoding/decoding on NSData (<a href="http://colloquy.info/project/browser/trunk/Additions/NSDataAdditions.h" rel="nofollow">header</a> and <a href="http://colloquy.info/project/browser/trunk/Additions/NSDataAdditions.m" rel="nofollow">implementation</a>)</li> <li><a href="http://code.google.com/p/google-toolbox-for-mac/" rel="nofollow">Google Toolbox for Mac</a> has similar functionality (<a href="http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMBase64.h" rel="nofollow">header</a> and <a href="http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMBase64.m" rel="nofollow">implementation</a>)</li> <li>A <a href="http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html" rel="nofollow">Cocoa With Love blog post</a> on the topic.</li> <li>A <a href="http://www.cocoadev.com/index.pl?BaseSixtyFour" rel="nofollow">CocoaDev.com wiki page</a> on the topic.</li> </ul> <p><hr></p> <p><strong>Edit:</strong> I was assuming you'd combine this with my answer to <a href="http://stackoverflow.com/questions/1400246/aes-encryption-for-an-nsstring-on-the-iphone">your previous question</a> on AES encryption of NSString objects. Encoding data as Base64 doesn't place any restrictions on the data itself — it can certainly be AES-enrypted data itself. Here's what to do if you just want string input and output:</p> <ul> <li>Encryption <ul> <li>Provide (1) the NSString to be encrypted and (2) the passphrase to use for encrypting.</li> <li>Convert the string to an NSData and perform AES encryption on it (see previous question).</li> <li>Base64-encode the NSData, then create and return and NSString of the encoded output.</li> </ul></li> <li>Decrpytion <ul> <li>Provide (1) the encrypted and encoded string, and (2) the passphrase to use for decrypting.</li> <li>Create an NSData from the first string, then Base64-decode the data.</li> <li>Perform AES decryption on the data, then create and return an NSString.</li> </ul></li> </ul> <p>It's really just a matter of chaining the two parts together and performing them in reverse on the way out. From my previous answer, you can modify <code>encryptString:withKey:</code> to return perform the last step and return a string, and change <code>decryptData:withKey:</code> to be <code>decryptString:withKey:</code> and accept two strings. It's pretty straightforward.</p> http://stackoverflow.com/questions/1112373/implementing-hash-isequal-isequalto-for-objective-c-collections 11 Implementing -hash / -isEqual: / -isEqualTo...: for Objective-C collections Quinn Taylor 2009-07-10T22:59:26Z 2009-11-05T17:39:23Z <p><strong>Note:</strong> The following SO questions are related, but neither they nor the linked resources seem to fully answer my questions, particularly in relation to implementing equality tests for <strong>collections of objects</strong>.</p> <ul> <li><a href="http://stackoverflow.com/questions/254281/">Best practices for overriding -isEqual: and -hash</a></li> <li><a href="http://stackoverflow.com/questions/442808/">Techniques for implementing -hash on mutable Cocoa objects</a></li> </ul> <p><hr /></p> <h3>Background</h3> <p>NSObject provides <em>default</em> implementations of <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSObject%5FProtocol/Reference/NSObject.html#//apple%5Fref/occ/intfm/NSObject/hash" rel="nofollow"><code>-hash</code></a> (which returns the address of the instance, like <code>(NSUInteger)self</code>) and <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSObject%5FProtocol/Reference/NSObject.html#//apple%5Fref/occ/intfm/NSObject/isEqual%3A" rel="nofollow"><code>-isEqual:</code></a> (which returns <code>NO</code> unless the addresses of the receiver and the parameter are identical). These methods are designed to be overridden as necessary, but the documentation makes it clear that you should provide both or neither. Further, if <code>-isEqual:</code> returns <code>YES</code> for two objects, then the result of <code>-hash</code> for those objects <strong>must</strong> be the same. If not, problems can ensue when objects that should be the same — such as two string instances for which <code>-compare:</code> returns <code>NSOrderedSame</code> — are added to a Cocoa collection or compared directly.</p> <h3>Context</h3> <p>I develop <a href="http://cocoaheads.byu.edu/code/CHDataStructures" rel="nofollow">CHDataStructures.framework</a>, an open-source library of Objective-C data structures. I have implemented a number of collections, and am currently refining and enhancing their functionality. One of the features I want to add is the ability to compare collections for equality with another.</p> <p>Rather than comparing only memory addresses, these comparisons should consider the objects present in the two collections (including ordering, if applicable). This approach has quite a precedent in Cocoa, and generally uses a separate method, including the following:</p> <ul> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSArray/isEqualToArray%3A" rel="nofollow"><code>-[NSArray isEqualToArray:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSDate/isEqualToDate%3A" rel="nofollow"><code>-[NSDate isEqualToDate:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSDictionary%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSDictionary/isEqualToDictionary%3A" rel="nofollow"><code>-[NSDictionary isEqualToDictionary:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/nsnumber%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSNumber/isEqualToNumber%3A" rel="nofollow"><code>-[NSNumber isEqualToNumber:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSSet%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSSet/isEqualToSet%3A" rel="nofollow"><code>-[NSSet isEqualToSet:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/isEqualToString%3A" rel="nofollow"><code>-[NSString isEqualToString:]</code></a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSValue%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSValue/isEqualToValue%3A" rel="nofollow"><code>-[NSValue isEqualToValue:]</code></a></li> </ul> <p>I want to make my custom collections robust to tests of equality, so they may safely (and predictably) be added to other collections, and allow others (like an NSSet) to determine whether two collections are equal/equivalent/duplicates.</p> <h3>Problems</h3> <p>An <code>-isEqualTo...:</code> method works great on its own, but classes which define these methods usually also override <code>-isEqual:</code> to invoke <code>[self isEqualTo...:]</code> if the parameter is of the same class (or perhaps subclass) as the receiver, or <code>[super isEqual:]</code> otherwise. This means the class must also define <code>-hash</code> such that it will return the same value for disparate instances that have the same contents.</p> <p>In addition, Apple's documentation for <code>-hash</code> stipulates the following: (emphasis mine)</p> <blockquote> <p><em>"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. Therefore, <strong>either</strong> the hash method must not rely on any of the object's internal state information <strong>or</strong> you must make sure the object's internal state information does not change while the object is in the collection. Thus, for example, a mutable dictionary can be put in a hash table but you must not change it while it is in there. (Note that it can be difficult to know whether or not a given object is in a collection.)"</em></p> </blockquote> <p><strong>Edit:</strong> <em>I definitely understand why this is necessary and totally agree with the reasoning — I mentioned it here to provide additional context, and skirted the topic of why it's the case for the sake of brevity.</em></p> <p>All of my collections are mutable, and the hash will have to consider at least <em>some</em> of the contents, so the only option here is to consider it a programming error to mutate a collection stored in another collection. (My collections all adopt <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSCopying%5FProtocol/" rel="nofollow">NSCopying</a>, so collections like NSDictionary can successfully make a copy to use as a key, etc.)</p> <p>It makes sense for me to implement <code>-isEqual:</code> and <code>-hash</code>, since (for example) an indirect user of one of my classes may not know the specific <code>-isEqualTo...:</code> method to call, or even care whether two objects are instances of the same class. They should be able to call <code>-isEqual:</code> or <code>-hash</code> on any variable of type <code>id</code> and get the expected result.</p> <p>Unlike <code>-isEqual:</code> (which has access to two instances being compared), <code>-hash</code> must return a result "blindly", with access only to the data within a particular instance. <strike>Since it can't know what the hash is being used for, the result must be consistent for <strong>all</strong> possible instances that should be considered equal/identical, and must always agree with <code>-isEqual:</code></strike>. <em>(Edit: This has been debunked by the answers below, and it certainly makes life easier.)</em> Further, writing good hash functions is non-trivial — guaranteeing uniqueness is a challenge, especially when you only have an NSUInteger (32/64 bits) in which to represent it.</p> <h3>Questions</h3> <ol> <li>Are there best practices when implementing <strike>equality comparisons</strike> <code>-hash</code> for collections?</li> <li>Are there any peculiarities to plan for in Objective-C and Cocoa-esque collections?</li> <li>Are there any good approaches for unit testing <code>-hash</code> with a reasonable degree of confidence?</li> <li>Any suggestions on implementing <code>-hash</code> to agree with <code>-isEqual:</code> for collections containing elements of arbitrary types? What pitfalls should I know about? (<strong>Edit:</strong> Not as problematic as I first thought — as <em>@kperryua</em> points out, "equal <code>-hash</code> values do <strong>not</strong> imply <code>-isEqual:</code>".)</li> </ol> <p><hr /></p> <p><strong>Edit:</strong> <em>I should have clarified that I'm not confused about how to implement -isEqual: or -isEqualTo...: for collections, that's straightforward. I think my confusion stemmed mainly from (mistakenly) thinking that -hash MUST return a different value if -isEqual: returns NO. Having done cryptography in the past, I was thinking that hashes for different values MUST be different. However, the answers below made me realize that a "good" hash function is really about <b>minimizing</b> bucket collisions and chaining for collections that use <code>-hash</code>. While unique hashes are preferable, they are not a strict requirement.</em></p> http://stackoverflow.com/questions/1022269/naming-a-dictionary-structure-that-stores-keys-in-a-predictable-order 7 Naming a dictionary structure that stores keys in a predictable order? Quinn Taylor 2009-06-20T19:06:43Z 2009-11-05T17:37:59Z <blockquote> <p><strong>Note:</strong> Although my particular context is Objective-C, my question actually transcends programming language choice. Also, I tagged it as "subjective" since someone is bound to complain otherwise, but I personally think it's almost entirely objective. Also, I'm aware of <a href="http://stackoverflow.com/questions/376090/nsdictionary-with-ordered-keys/">this related SO question</a>, but since this was a bigger issue, I thought it better to make this a separate question. Please don't criticize the question without reading and understanding it fully. Thanks!</p> </blockquote> <p>Most of us are familiar with the <a href="http://www.itl.nist.gov/div897/sqg/dads/HTML/dictionary.html" rel="nofollow"><strong>dictionary</strong> abstract data type</a> that stores key-value associations, whether we call it a map, dictionary, associative array, hash, etc. depending on our language of choice. A simple definition of a dictionary can be summarized by three properties:</p> <ol> <li>Values are accessed by key (as opposed to by index, like an array).</li> <li>Each key is associated with a value.</li> <li>Each key must be unique.</li> </ol> <p>Any other properties are arguably conveniences or specializations for a particular purpose. For example, some languages (especially scripting languages such as PHP and Python) blur the line between dictionaries and arrays and do provide ordering for dictionaries. As useful as this can be, such additions are not a fundamental characteristics of a dictionary. In a pure sense, the actual implementation details of a dictionary are irrelevant.</p> <p>For my question, the most important observation is that <strong>the order in which keys are enumerated is not defined</strong> — a dictionary may provide keys in whatever order it finds most convenient, and it is up to the client to organize them as desired.</p> <p>I've <a href="http://dysart.cs.byu.edu/CHDataStructures/interface%5Fc%5Fh%5Flockable%5Fdictionary.html" rel="nofollow">created custom dictionaries</a> that impose specific key orderings, including <em>natural sorted order</em> (based on object comparisons) and <em>insertion order</em>. It's obvious to name the former some variant on <strong>SortedDictionary</strong> (which I've actually already implemented), but the latter is more problematic. I've seen <a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedHashMap.html" rel="nofollow">LinkedHashMap</a> and <a href="http://commons.apache.org/collections/api-3.1/org/apache/commons/collections/map/LinkedMap.html" rel="nofollow">LinkedMap</a> (Java), <a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx" rel="nofollow">OrderedDictionary</a> (.NET), <a href="http://codeendeavor.com/gsdocs/net/guttershark/util/collections/OrderedDictionary.html" rel="nofollow">OrderedDictionary</a> (Flash), <a href="http://www.python.org/dev/peps/pep-0372/" rel="nofollow">OrderedDict</a> (Python), and <a href="http://cocoawithlove.com/2008/12/ordereddictionary-subclassing-cocoa.html" rel="nofollow">OrderedDictionary</a> (Objective-C). Some of these are more mature, some are more proof-of-concept.</p> <p><strong>LinkedHashMap</strong> is named according to implementation in the tradition of Java collections — "linked" because it uses a doubly-linked list to track insertion order, and "hash" because it subclasses HashMap. Besides the fact that user shouldn't need to worry about that, the class name doesn't really even indicate what it does. Using <strong>ordered</strong> seems like the consensus among existing code, but web searches on this topic also revealed understandable confusion between "ordered" and "sorted", and I feel the same. The .NET implementation even has a comment about the apparent misnomer, and suggests that it should be "IndexedDictionary" instead, owing to the fact that you can retrieve and insert objects at a specific point in the ordering.</p> <p> http://stackoverflow.com/questions/1019172/creating-an-xcode-data-formatter-bundle-for-custom-obj-c-objects 3 Creating an Xcode data formatter bundle for custom Obj-C objects Quinn Taylor 2009-06-19T17:41:43Z 2009-11-05T17:33:10Z <p>To help simplify debugging of <a href="http://dysart.cs.byu.edu/CHDataStructures/" rel="nofollow">some custom Objective-C objects</a> in the Xcode debugger window, I've created a set of data formatter strings for each of the objects, using the <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeDebugging/600-Viewing%5FVariables%5Fand%5FMemory/variables%5Fand%5Fmemory.html" rel="nofollow">related Apple documentation</a> and Xcode's built-in data formatters (in <strong>/Developer/Library/Xcode/CustomDataViews/</strong>) as a guide.</p> <p><a href="http://dysart.cs.byu.edu/websvn/filedetails.php?repname=BYU%20CocoaHeads&amp;path=/CHDataStructures/resources/CustomDataViews.plist&amp;rev=494" rel="nofollow">My custom summary strings</a> work great as a bare property list (.plist) file if I put it in the same directory as the built-in data formatters. However, I'd rather not do that since some users may not have write privileges to that directory, and it's bad practice to mix custom formatters with the built-in ones. Similarly, saving the entries to <strong>~/Library/Application Support/Apple/Developer Tools/CustomDataViews/CustomDataViews.plist</strong> also works, but that file is for user-defined values that override the defaults, and its entries are clobbered by changes in the Xcode debugger GUI. It seems that I really want is to provide my data formatters as a bundle (with the plist inside) such that it can be placed in a number of locations, and users can still selectively override my settings if desired.</p> <p>The problem is that when I create a bundle (following the example of <a href="http://developer.apple.com/samplecode/WcharDataFormatter/" rel="nofollow">this Apple sample code</a> for the most part) and install it (either in <strong>/Developer/Library/Xcode/CustomDataViews/</strong> or any <strong>Library/Application Support/Apple/Developer Tools/CustomDataViews/</strong> path), Xcode doesn't use the custom formatters at all. The documentation on the specifics of data formatter bundles is somewhat scanty (mostly a single header file in <strong>Xcode.app/Contents/PlugIns/GDBMIDebugging.xcplugin</strong>), possibly because the functionality may not be one of the headline features of Xcode. ;-)</p> <p>I'm looking for tips on how to get the Xcode data formatter bundle to work properly. Feel free to examine <a href="http://dysart.cs.byu.edu/websvn/revision.php?repname=BYU%20CocoaHeads&amp;path=/CHDataStructures/&amp;rev=494" rel="nofollow">the related changeset</a> which adds the bundle functionality to my project. You can <a href="http://dysart.cs.byu.edu/websvn/dl.php?repname=BYU%20CocoaHeads&amp;path=/CHDataStructures/&amp;rev=494&amp;isdir=1" rel="nofollow">download my Xcode project</a> (or check out <a href="http://dysart.cs.byu.edu/chsvn/CHDataStructures/" rel="nofollow">this SVN path</a>) and build the "Xcode Formatter" target if it helps. Thanks in advance for any insight!</p> http://stackoverflow.com/questions/1016289/how-can-i-navigate-backwards-in-xcode/1020359#1020359 2 Answer by Quinn Taylor for How can I navigate backwards in Xcode? Quinn Taylor 2009-06-19T22:45:16Z 2009-11-03T04:55:56Z <p>Xcode 3.1.x is admittedly a bit weak in this respect. Happily, the navigation <em>@zoul</em> mentions (The back/forward arrows in the header bar, or ⌘⌥← and ⌘⌥→) is significantly improved in Snow Leopard, and should provide the finer-grained navigation you're hoping for. <strike>Sorry there's not an immediate solution, but hopefully it helps to know that a fix is coming...</strike></p> http://stackoverflow.com/questions/1628493/is-a-extends-inherits-what-is-your-preferred-term-for-inheritance-and-why/1628666#1628666 2 Answer by Quinn Taylor for Is-a, extends, 'inherits': What is your preferred term for "inheritance" and why? Quinn Taylor 2009-10-27T03:45:24Z 2009-10-27T03:45:24Z <p>The preferred terminology usually depends greatly on the language, but I find that most OO developers understand each other regardless of the terms. (That being said, I definitely agree that word choice is important for maximizing effectiveness of communication.)</p> <p>My preferred terminology is "subclasses" or "extends" for classes, and "implements" for interfaces. (In Objective-C, one "adopts" or "conforms to" a protocol, the inspiration for Java's interfaces.) Often, I use "parent" and "child" to describe the relationship itself.</p> <p>I find that "is a" works best when contrasting with "has a" (composition), but it doesn't make sense for all forms of inheritance — sometimes, narrowing specificity makes sense, but not always. Similarly, there are times that "derives" just doesn't seem right — many people will understand it as specialization, but not everyone will. (For example, one can derive a proof, derive chemicals via a reaction, etc. Check out a dictionary entry on the word to see the variety of possible meanings, many of which have to do with a set of steps, which sounds more like an algorithm than inheritance.) On a side note, I've found that "base class" and "derived class" are preferred by many academics, but perhaps not as often in industry.</p> http://stackoverflow.com/questions/1619075/possible-circular-reference-problem/1626953#1626953 2 Answer by Quinn Taylor for Possible circular reference problem Quinn Taylor 2009-10-26T19:50:43Z 2009-10-26T20:00:08Z <p>Nikolai seems to be right. Beyond that, best practice would dictate that properties (like ivars) should NOT start with an uppercase letter. You're just asking for hurt. Use these instead:</p> <p><strong>Controller.h</strong></p> <pre><code>@interface Controller : NSObject { Model *model; } @property (nonatomic, retain) Model *model; </code></pre> <p><strong>Controller.m</strong></p> <pre><code>@synthesize model; </code></pre> http://stackoverflow.com/questions/1626778/is-it-good-form-to-release-self-in-an-init-method-when-that-method-allocates-and/1626813#1626813 4 Answer by Quinn Taylor for is it good form to release self in an init method when that method allocates and returns something else? Quinn Taylor 2009-10-26T19:23:03Z 2009-10-26T19:30:12Z <p>Your code looks technically correct, from a memory management perspective. Replacing self with a different alloc'd object loses the pointer to the original object, and nobody else will be able to release it, which would cause a leak. Try commenting out the release call and run it with Leaks in Instruments.</p> <p>Just be cautious about opening this particular can of worms — Foundation.framework (part of Cocoa) uses <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaObjects/CocoaObjects.html#//apple%5Fref/doc/uid/TP40002974-CH4-SW34" rel="nofollow">class clusters</a> for collections and strings, but doing so is a fairly advanced concept. A better approach might be to have a class method for each subclass, using the <a href="http://en.wikipedia.org/wiki/Abstract%5Ffactory%5Fpattern" rel="nofollow">AbstractFactory pattern</a>.</p> <p>In any case, determining the subclass type based on an integer is a bad idea — any change in mapping from type to class will break dependent code. If you're going that way, why not just pass in the class object itself?</p> http://stackoverflow.com/questions/1588281/why-subclass-nsobject/1589434#1589434 3 Answer by Quinn Taylor for Why subclass NSObject? Quinn Taylor 2009-10-19T15:38:32Z 2009-10-19T15:38:32Z <p>Since object-oriented languages have the concept of an inheritance, in any inheritance hierarchy there is a root class. In Java, the default parent class (if none is provided) is <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html" rel="nofollow"><code>java.lang.Object</code></a>, whereas in Objective-C, if you don't explicitly declare a parent class, you don't get one. Essentially, your class becomes a root class itself. This is a common mistake among Objective-C newcomers, since you normally want to inherit from NSObject in such cases.</p> <p>While often problematic and puzzling, this actually allows quite a bit of flexibility, since you can define your own class hierarchies that act completely differently from NSObject. (Java doesn't allow you to do this at all.) On the other hand, unless you know what you're doing, it's easy to get yourself into trouble this way. Fortunately, the compiler will provide warnings if you call a method not defined by a class with no declared parent class, such as those you would normally expect to inherit from NSObject.</p> <p>As for the "use" of NSObject, check out the documentation of the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSObject%5FClass/" rel="nofollow">NSObject class</a> and <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSObject%5FProtocol/" rel="nofollow">NSObject protocol</a>. They define common methods used for object allocation, memory management, comparison, hashing, printing descriptions, checking class membership, querying whether objects respond to a selector, etc. Basically, NSObject is "good for" providing the core functionality of Objective-C objects free of charge.</p> http://stackoverflow.com/questions/1574505/automatic-timeout-for-launchd-jobs/1578810#1578810 1 Answer by Quinn Taylor for Automatic timeout for launchd jobs Quinn Taylor 2009-10-16T15:28:32Z 2009-10-16T15:28:32Z <p>(Note: These are semi-raw ideas, not a polished solution.)</p> <p>One possibility is using the watchdog functionality of launchd. If you can customize your unit tests to touch a file when it starts, you could have a separate launchd task start up when it senses that file. If the unit test script doesn't delete the file within a specified time interval, then it should be killed. To do this, you could have the watchdog task launch a script that gets the PID of your unit tests, sleep for the desired interval, then kill the unit tests if that process is still running. YMMV.</p> http://stackoverflow.com/questions/1557666/xunit-testing-framework-for-mac-iphone/1561483#1561483 2 Answer by Quinn Taylor for xUnit Testing Framework for Mac/iPhone Quinn Taylor 2009-10-13T16:46:12Z 2009-10-13T16:57:55Z <p>I agree that OCUnit is a great xUnit tool. Integration with Xcode is solid, and it works well with OCMock. It's also hard to overstate the value of Apple being committed to the code — there is certainly room for improvement, but it's solid and still maintained. Xcode also integrates pretty nicely with <code>gcov</code>, a GNU tool for instrumenting code coverage. A few links...</p> <ul> <li><a href="http://cocoaheads.byu.edu/resources/unit-testing-cocoa" rel="nofollow">http://cocoaheads.byu.edu/resources/unit-testing-cocoa</a></li> <li><a href="http://cocoaheads.byu.edu/resources/unit-testing-and-code-coverage-xcode" rel="nofollow">http://cocoaheads.byu.edu/resources/unit-testing-and-code-coverage-xcode</a></li> <li><a href="http://chanson.livejournal.com/182472.html" rel="nofollow">http://chanson.livejournal.com/182472.html</a></li> </ul> <p>To back up Barry, yes, lots of Objective-C developers do unit testing, including inside Apple. (Just ask <a href="http://stackoverflow.com/users/25646/">@bbum</a> about CoreData unit tests...) For examples of what you can do, feel free to raid my side project:</p> <ul> <li><a href="http://dysart.cs.byu.edu/CHDataStructures/" rel="nofollow">http://dysart.cs.byu.edu/CHDataStructures/</a> (API documentation)</li> <li><a href="http://dysart.cs.byu.edu/CHDataStructures/coverage/source/" rel="nofollow">http://dysart.cs.byu.edu/CHDataStructures/coverage/source/</a> (coverage report)</li> <li><a href="http://dysart.cs.byu.edu/chsvn/CHDataStructures/" rel="nofollow">http://dysart.cs.byu.edu/chsvn/CHDataStructures/</a> (browse Subversion)</li> </ul> http://stackoverflow.com/questions/1526221/search-is-only-matching-words-at-the-beginning/1526289#1526289 2 Answer by Quinn Taylor for Search is only matching words at the beginning. Quinn Taylor 2009-10-06T15:21:01Z 2009-10-06T15:26:39Z <p><a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/rangeOfString%3Aoptions%3A" rel="nofollow"><code>-[NSString rangeOfString:options:]</code></a> and friends are what you want. It returns:</p> <blockquote> <p>"An <code>NSRange</code> structure giving the location and length in the receiver of the first occurrence of <code>aString</code>, modulo the options in mask. Returns <code>{NSNotFound, 0}</code> if <code>aString</code> is not found or is empty (<code>@""</code>)."</p> </blockquote> http://stackoverflow.com/questions/174315/how-do-you-document-your-source-code-in-xcode/975921#975921 3 Answer by Quinn Taylor for How do you document your source code in Xcode? Quinn Taylor 2009-06-10T14:25:32Z 2009-10-03T16:27:20Z <p>I have a similar background in Java, and had the same question when I learned Objective-C and Cocoa. Currently, there's no tool that's <em>perfectly tailored</em> for Objective-C, but <strong>Doxygen</strong> is the best option by far right now. (I agree that HeaderDoc is overly complex, especially for small projects, and every other tool I've found is dead or abandonware, including AutoDoc and ObjcDoc.) The developer of Doxygen has improved Obj-C support consistently over the past few releases, including several bugs I've submitted where protocols weren't handled correctly.</p> <p>Within Xcode, I create a Documentation target with a single Run Script phase which invokes Doxygen using a doxyfile saved in the project directory. It helps to create a symlink to the Doxygen executable in <code>/usr/local/bin</code> so you don't have machine-specific paths in a shared doxyfile.</p> <p>Doxygen supports <em>virtually</em> all the comment tags you'd expect to see in Javadoc, plus a lot more. I've used it <em>extensively</em> on an open-source framework I develop — the resulting documentation is auto-generated using a Subversion post-commit hook and available online:</p> <p><a href="http://dysart.cs.byu.edu/CHDataStructures/" rel="nofollow">http://dysart.cs.byu.edu/CHDataStructures/</a></p> <p>Notice the diagrams which document inheritance and collaboration. These can optionally be generated using the <strong>dot</strong> tool, available with GraphViz, either <a href="http://www.pixelglow.com/graphviz/download/" rel="nofollow">v1.13</a> or <a href="http://www.graphviz.org/Download%5Fmacos.php" rel="nofollow">v2.20</a>. The diagrams are clickable HTML image maps, which helps make up for the lack of information at the top which you'd expect in Javadoc (such as inheritance hierarchy) or Apple's Cocoa documentation (such as adopted protocols).</p> <p><hr /></p> <p>As an aside, since CHDataStructures is a framework with lots of public APIs, I write <strong>lots</strong> of comments — approximately 70% of my header files. Since the documentation is more useful in the form generated by Doxygen, I opt to strip out most comments from the Release version of the headers, which dramatically reduces the on-disk size for the headers. I've posted the full explanation and code on the <a href="http://cocoaheads.byu.edu" rel="nofollow">BYU CocoaHeads</a> wiki:</p> <p><a href="http://cocoaheads.byu.edu/wiki/stripping-comments-source-code" rel="nofollow">http://cocoaheads.byu.edu/wiki/stripping-comments-source-code</a></p> http://stackoverflow.com/questions/1493125/using-performselector-vs-just-calling-the-method/1493486#1493486 2 Answer by Quinn Taylor for Using -performSelector: vs. just calling the method Quinn Taylor 2009-09-29T16:01:42Z 2009-09-29T16:01:42Z <p>@ennuikiller is spot on. Basically, dynamically-generated selectors are useful for when you don't (and usually can't possibly) know the name of the method you'll be calling when you compile the code.</p> <p>One key difference is that <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Protocols/NSObject%5FProtocol/Reference/NSObject.html#//apple%5Fref/occ/intfm/NSObject/performSelector%3A" rel="nofollow"><code>-performSelector:</code></a> and friends (including the <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSObject%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSObject/performSelector%3AonThread%3AwithObject%3AwaitUntilDone%3A" rel="nofollow">multi-threaded and delayed variants</a>) are somewhat limited in that they are designed for use with methods with 0-2 parameters. For example, calling <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/NSOutlineViewDelegate%5FProtocol/Reference/Reference.html#//apple%5Fref/occ/intfm/NSOutlineViewDelegate/outlineView%3AtoolTipForCell%3Arect%3AtableColumn%3Aitem%3AmouseLocation%3A" rel="nofollow"><code>-outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation:</code></a> with 6 parameters and returning the <code>NSString</code> is pretty unwieldy, and not supported by the provided methods.</p> http://stackoverflow.com/questions/1489522/stringbyappendingpathcomponent-hows-it-work/1489647#1489647 5 Answer by Quinn Taylor for stringByAppendingPathComponent, hows it work? Quinn Taylor 2009-09-28T22:15:32Z 2009-09-28T23:00:06Z <p>All the existing answers are leaking the original <code>testPath</code> string. For something as simple as this, why has nobody recommended <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSMutableString%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSMutableString/appendString%3A" rel="nofollow"><code>-[NSMutableString appendString:]</code></a> intead?</p> <pre><code>[testPath appendString:@"/"]; </code></pre> <p>There's no equivalent to <code>-stringByAppendingPathComponent:</code> for NSMutableString, but it looks like he's just trying to add a slash, not a path component anyway. If you really wanted to add a path component, you could do this:</p> <pre><code>[testPath setString:[testPath stringByAppendingPathComponent:@"..."]]; </code></pre> <p>It's an annoying workaround, but as @dreamlax points out, <code>-stringByAppendingPathComponent:</code> always returns an immutable string, even when called on an NSMutableString object. :-(</p> http://stackoverflow.com/questions/1455471/objective-c-object-not-getting-dealloced/1455622#1455622 7 Answer by Quinn Taylor for objective-c object not getting dealloc:ed Quinn Taylor 2009-09-21T17:07:01Z 2009-09-27T21:28:42Z <p><a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/" rel="nofollow">Instruments</a> is great, and can pick up on leaked objects <em>if and when they are leaked</em>, but in cases like these I suggest you first use the <a href="http://developer.apple.com/mac/library/featuredarticles/StaticAnalysis/" rel="nofollow">Xcode Static Analyzer</a>, new in Xcode 3.2 with Snow Leopard. (If you're on Leopard, you can use the <a href="http://clang-analyzer.llvm.org/" rel="nofollow">command-line version</a>.) Static analysis allows you to find a great many problems without even executing your code, and in many cases is much easier to use than Instruments.</p> http://stackoverflow.com/questions/1475182/cocoa-objective-c-shell-command-line-execution/1475282#1475282 3 Answer by Quinn Taylor for Cocoa/ Objective-C Shell Command Line Execution Quinn Taylor 2009-09-25T03:30:01Z 2009-09-25T03:30:01Z <p><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSTask%5FClass/" rel="nofollow">NSTask</a> is pretty easy to do this with. For a synchronous call, you can use something like this fragment:</p> <pre><code>NSString *path = @"/path/to/executable"; NSArray *args = [NSArray arrayWithObjects:..., nil]; [[NSTask launchedTaskWithLaunchPath:path arguments:args] waitUntilExit]; </code></pre> <p>The <code>-waitUntilExit</code> call makes sure it finishes before proceeding. If the task can be asynchronous, you can remove that call and just let the NSTask do it's thing.</p> http://stackoverflow.com/questions/1231198/declaring-variables-inside-a-switch-statement/1231209#1231209 13 Answer by Quinn Taylor for Declaring variables inside a switch statement Quinn Taylor 2009-08-05T04:37:15Z 2009-09-24T14:44:11Z <p>You actually <em>can</em> declare variables within a switch if you do it according to the syntax of the language. You're getting an error because "<code>case 0:</code>" is a label, and in C it's illegal to have a <strong>declaration</strong> as the first statement after a label — note that the compiler expects an <strong>expression</strong>, such as a method call, normal assignment, etc. (Bizarre though it may be, that's the rule.)</p> <p>When you put the NSLog() first, you avoided this limitation. You can enclose the contents of a case in { } braces to introduce a scoping block, or you can move the variable declaration outside the switch. Which you choose is a matter of personal preference. Just be aware that a variable declared in { } braces is only valid within that scope, so any other code that uses it must also appear within those braces.</p> <p><hr /></p> <p><strong>Edit:</strong></p> <p>By the way, this quirk isn't as uncommon as you might think. In C and Java, it's also illegal to use a local variable declaration as the lone statement (meaning "not surrounded by braces) in a <strong>for</strong>, <strong>while</strong>, or <strong>do</strong> loop, or even in <strong>if</strong> and <strong>else</strong> clauses. (In fact, this is covered in puzzler #55 of <a href="http://www.javapuzzlers.com/" rel="nofollow">"Java Puzzlers"</a>, which I highly recommend.) I think we generally don't write such errors to begin with because it makes little sense to declare a variable as the only statement in such contexts. With <strong>switch</strong> constructs, though, we frequently omit the braces since the <strong>break</strong> statement is the critical statement for control flow.</p> <p>To see the compiler throw fits, copy this horrific, pointless snippet into your (Objective-)C code:</p> <pre><code>if (1) int i; else int i; for (int answer = 1; answer &lt;= 42; answer ++) int i; while (1) int i; do int i; while (1); </code></pre> <p>Yet another reason to always use { } braces to delimit the body of such constructs. :-)</p> http://stackoverflow.com/questions/1462834/how-to-convert-an-alphanumeric-phone-number-to-digits/1462837#1462837 1 Answer by Quinn Taylor for How to convert an alphanumeric phone number to digits Quinn Taylor 2009-09-22T21:51:35Z 2009-09-23T04:28:33Z <p>Switch statements get compiled to a similar form as if-else statements, (each <code>case</code> statement is essentially an <strong><code>if (c == '...')</code></strong> test in disguise) so although this is visually more compact than cascading if's that test for each character, there may or may not be any real performance benefit. </p> <p>You can potentially streamline it by eliminating some of the comparisons. The key is that <code>char</code> is an integer type (which is why you can switch on a <code>char</code>) so you can use numeric comparison operators. and 'aAssuming your <code>inLetters</code> string only contains alphanumeric characters, this should work... (All other characters will pass through unchanged.)</p> <pre><code>String result = ""; for (char c : letters.toLowerCase().toCharArray()) { if (c &lt;= '9') result += c; else if (c &lt;= 'c') result += "2"; else if (c &lt;= 'f') result += "3"; else if (c &lt;= 'i') result += "4"; else if (c &lt;= 'l') result += "5"; else if (c &lt;= 'o') result += "6"; else if (c &lt;= 's') result += "7"; else if (c &lt;= 'v') result += "8"; else if (c &lt;= 'z') result += "9"; else result += c; } </code></pre> <p>The characters of interest have the hexadecimal values: '0' = 0x30, '9' = 0x39, 'a' = 0x61, and 'z' = 0x7a.</p> <p><strong>Edit:</strong> It's better practice to use a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/StringBuilder.html" rel="nofollow">StringBuilder</a> and <code>append()</code> to create the string, but for small strings it's not likely to be appreciably faster. (<a href="http://en.wikipedia.org/wiki/Amdahls%5Flaw" rel="nofollow">Amdahl's Law</a> demonstrates that the actual speedup you can expect from optimizing code is limited by the percentage of time actually spent in that code.) I only used concatenated strings to make the algorithm clear to the OP.</p> http://stackoverflow.com/questions/1457804/nstask-returning-http-headers/1462648#1462648 1 Answer by Quinn Taylor for NSTask returning HTTP Headers Quinn Taylor 2009-09-22T21:14:56Z 2009-09-22T21:14:56Z <p>Does the script print the headers when you run it from Terminal? If so, perhaps using <code>-[NSTask setStandard*:]</code> (maybe using NSPipe) can help capture the output. If not, it's possible that the web server injects the headers as it processes the CGI.</p> http://stackoverflow.com/questions/1456966/how-to-detect-unused-methods-and-import-in-objective-c/1457040#1457040 7 Answer by Quinn Taylor for How to detect unused methods and #import in Objective-C Quinn Taylor 2009-09-21T21:41:30Z 2009-09-22T16:48:12Z <p>Xcode allows you to (un)check settings for specific compiler warnings that can warn you of some types of unused code. (Select the project in the source list and File > Get Info, then select the Build tab.) Here are a few (which show up for Clang and GCC 4.2 for me) which may be of interest:</p> <ul> <li>Unused Functions</li> <li>Unused Parameters</li> <li>Unused Values</li> </ul> <p>I don't see any options for detecting unused imports, but that is a bit simpler — the low-tech approach is just to comment out import statements until you get a compile error/warning.</p> <p>Unused Objective-C methods are much more difficult to detect than unused C functions because messages are dispatched dynamically. A warning or error can tell you that you have a potential problem, but the lack of one doesn't guarantee you won't have runtime errors.</p> <p><hr /></p> <p><strong>Edit:</strong> Another good way to detect (potentially) unused methods is to examine code coverage from actual executions. This is usually done in tandem with automated unit testing, but doesn't have to be.</p> <p><a href="http://www.supermegaultragroovy.com/blog/2005/11/03/unit-testing-and-code-coverage-with-xcode/" rel="nofollow">This blog post</a> is a decent introduction to unit testing and code coverage using Xcode. The section on <strong><code>gcov</code></strong> (which only works with code generated by GCC, by the way) explains how to get Xcode to build instrumented code that can record how often it has been executed. If you take an instrumented build of your app for a spin in the simulator, then run gcov on it, you can see what code was executed by using a tool like <a href="http://code.google.com/p/coverstory/" rel="nofollow">CoverStory</a> (a fairly simplistic GUI) or <a href="http://ltp.sourceforge.net/coverage/lcov.php" rel="nofollow"><code>lcov</code></a> (Perl scripts to create HTML reports).</p> <p>I use <code>gcov</code> and <code>lcov</code> for <a href="http://cocoaheads.byu.edu/code/CHDataStructures" rel="nofollow">CHDataStructures.framework</a> and auto-generate <a href="http://dysart.cs.byu.edu/CHDataStructures/coverage/source/" rel="nofollow">coverage reports</a> after each SVN commit. Again, remember that it's unwise to treat executed coverage as a definitive measure of what code is "dead", but it can certainly help identify methods that you can investigate further.</p> <p>Lastly, since you're trying to remove dead code, I think you'll find this SO question interesting as well:</p> <ul> <li><a href="http://stackoverflow.com/questions/960470/">Profiling Objective-C binary image size</a></li> </ul> http://stackoverflow.com/questions/215820/how-do-i-create-a-temporary-file-with-cocoa/1458147#1458147 3 Answer by Quinn Taylor for How do I create a temporary file with Cocoa? Quinn Taylor 2009-09-22T04:50:21Z 2009-09-22T04:50:21Z <p>Though it's nearly a year later, I figured it's still helpful to mention a blog post from Cocoa With Love by Matt Gallagher. <a href="http://cocoawithlove.com/2009/07/temporary-files-and-folders-in-cocoa.html" rel="nofollow">http://cocoawithlove.com/2009/07/temporary-files-and-folders-in-cocoa.html</a> He shows how to use <strong><code>mkstemp()</code></strong> for files and <strong><code>mkdtemp()</code></strong> for directories, complete with NSString conversions.</p> http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files/1447255#1447255 2 Answer by Quinn Taylor for How do I "decompile" Java class files? Quinn Taylor 2009-09-18T23:53:09Z 2009-09-18T23:59:11Z <p><a href="http://www.sable.mcgill.ca/soot/" rel="nofollow"><strong>Soot</strong></a> is an option for newer Java code. At least it has the advantage of still being recently maintained...</p> <p>Also, <a href="http://java.decompiler.free.fr/" rel="nofollow"><strong>Java Decompiler</strong></a> is a decompiler with both a stand-alone GUI and Eclipse integration.</p> <p>Lastly, <a href="http://jdec.sourceforge.net/" rel="nofollow"><strong>Jdec</strong></a> hasn't been mentioned, though it's not as polished as other options.</p> http://stackoverflow.com/questions/1446015/cant-find-the-example-projects-from-stanford-cs193p/1446159#1446159 5 Answer by Quinn Taylor for Can't find the example projects from Stanford cs193p Quinn Taylor 2009-09-18T18:23:13Z 2009-09-18T18:23:13Z <p><a href="http://www.stanford.edu/class/cs193p/downloads/10-ThreadedFlickrTableView.zip" rel="nofollow">http://www.stanford.edu/class/cs193p/downloads/10-ThreadedFlickrTableView.zip</a></p> <p><a href="http://cs193p.stanford.edu/" rel="nofollow">http://cs193p.stanford.edu/</a></p> http://stackoverflow.com/questions/1844158/what-exactly-is-a-so-called-class-cluster-in-objective-c/1844447#1844447 Comment by Quinn Taylor on What exactly is a so called "Class Cluster" in Objective-C? Quinn Taylor 2009-12-04T22:57:22Z 2009-12-04T22:57:22Z +1 For quoting an answer from an Objective-C book, particularly given the original question. That's a good book, too. http://stackoverflow.com/questions/1780884/secpkcs12import-from-security-framework-fails-on-os-x-10-6 Comment by Quinn Taylor on SecPKCS12Import() from Security.framework fails on OS X 10.6 Quinn Taylor 2009-11-30T18:40:18Z 2009-11-30T18:40:18Z Confirmed to be unimplemented, at least as of 10.6.2 — please file a Radar on this. Details in my answer below. http://stackoverflow.com/questions/1816964/designing-the-iphone-interface-in-a-nib-or-in-code Comment by Quinn Taylor on Designing the iPhone interface in a nib or in code? Quinn Taylor 2009-11-29T22:35:00Z 2009-11-29T22:35:00Z You have a valid question. Managing interfaces in IB is a different paradigm that requires new skills and familiarity. However, realize that building interfaces by hand without IB is an even rarer skill, and finding people willing or able to deal with such code is a liability of its own. I would speculate that large projects are actually EASIER to maintain in IB, but it is still a tradeoff — the interactions are not always immediately visible in IB, but when you do it in code, it adds lots of extra glue code and removes the ability for the OS and runtime to optimize things for you. http://stackoverflow.com/questions/1816964/designing-the-iphone-interface-in-a-nib-or-in-code/1816999#1816999 Comment by Quinn Taylor on Designing the iPhone interface in a nib or in code? Quinn Taylor 2009-11-29T22:31:32Z 2009-11-29T22:31:32Z +1 Very well put. Understanding IB and MVC allows you to do whatever you need to if the need arises, but doing interfaces by hand will usually be a handicap rather than an advantage. The wise move is to decide based on the experience of your developers, the amount of non-standard functionality you're planning to implement, and the project itself. Even with all these factors, I always do it in IB first, then only do it by hand if you can't do it in IB. http://stackoverflow.com/questions/1816964/designing-the-iphone-interface-in-a-nib-or-in-code/1816976#1816976 Comment by Quinn Taylor on Designing the iPhone interface in a nib or in code? Quinn Taylor 2009-11-29T22:27:14Z 2009-11-29T22:27:14Z -1 Since when does doing it programmatically free anyone from needing to know how outlets match up with views, or any other aspect of writing an application that uses MVC, particularly when using the Cocoa frameworks which essentially revolve around the paradigm? I respect anyone's right to &quot;stick it to Interface Builder&quot;, but such suggestions are generally fruitless, and dumbing down iPhone programming generally makes for dumb apps, and developers who don't understand MVC and IB are setting themselves up for painful and disastrous maintenance. http://stackoverflow.com/questions/1783887/returning-an-objects-index-by-dictionary-value/1783948#1783948 Comment by Quinn Taylor on Returning an object's index by dictionary value Quinn Taylor 2009-11-23T15:43:00Z 2009-11-23T15:43:00Z However, I'd suggest renaming the method <code>-indexOfObjectInArray:byTitle:</code> instead. Using &quot;get&quot; as the prefix in Cocoa implies return by reference. http://stackoverflow.com/questions/1783887/returning-an-objects-index-by-dictionary-value/1783948#1783948 Comment by Quinn Taylor on Returning an object's index by dictionary value Quinn Taylor 2009-11-23T15:41:59Z 2009-11-23T15:41:59Z +1 Beat me to it by 10 seconds! http://stackoverflow.com/questions/1780884/secpkcs12import-from-security-framework-fails-on-os-x-10-6/1781070#1781070 Comment by Quinn Taylor on SecPKCS12Import() from Security.framework fails on OS X 10.6 Quinn Taylor 2009-11-23T15:35:25Z 2009-11-23T15:35:25Z Your latest update is quite helpful, specifically that these are linker errors. The fact that some symbols are not exported is puzzling. I'll be digging deeper to see if I can find a definitive answer... http://stackoverflow.com/questions/1780884/secpkcs12import-from-security-framework-fails-on-os-x-10-6/1781397#1781397 Comment by Quinn Taylor on SecPKCS12Import() from Security.framework fails on OS X 10.6 Quinn Taylor 2009-11-23T07:29:57Z 2009-11-23T07:29:57Z I've added this as an edit to the question. Can you delete this post, since it's not really an answer? http://stackoverflow.com/questions/1777927/getting-excbadaccess/1779126#1779126 Comment by Quinn Taylor on Getting “EXC_BAD_ACCESS” Quinn Taylor 2009-11-22T16:46:51Z 2009-11-22T16:46:51Z Incorrect. The <code>copy</code> attribute means that it calls the <code>-copy</code> message and assumes ownership of the copy. You're thinking of <code>assign</code>, which is used for primitives and delegates, etc. http://stackoverflow.com/questions/1777927/getting-excbadaccess/1778005#1778005 Comment by Quinn Taylor on Getting “EXC_BAD_ACCESS” Quinn Taylor 2009-11-22T08:14:57Z 2009-11-22T08:14:57Z This is misleading, since it's not an init problem — it's a deallocation problem, since it occurs when draining the autorelease pool. Besides, instance variables are initialized to nil (for objects, anyway) when an object is created. http://stackoverflow.com/questions/1775903/nsxmlparser-question/1775995#1775995 Comment by Quinn Taylor on NSXMLParser Question Quinn Taylor 2009-11-22T03:42:52Z 2009-11-22T03:42:52Z Excellent point, NSMapTable is a great alternative, and easier than diving into CFMutableDictionary. :-) http://stackoverflow.com/questions/1774857/assigning-variable-values-to-nstextfields-in-objective-c/1774896#1774896 Comment by Quinn Taylor on Assigning variable values to NSTextFields in Objective-C Quinn Taylor 2009-11-21T16:40:50Z 2009-11-21T16:40:50Z No problem. I've updated my answer with another idea. IB-related issues are quite hard to debug without actually being in front of the screen, but I hope this helps. http://stackoverflow.com/questions/1774766/how-do-i-trim-and-n-in-nsmutablestring/1774789#1774789 Comment by Quinn Taylor on How do I trim " " and "\n" in NSMutableString. Quinn Taylor 2009-11-21T07:38:03Z 2009-11-21T07:38:03Z This will work, but unless you specify the range, it less efficient than one would hope, since it will search the entire string for these characters (twice) rather than just the ends until all such characters have been removed. It also doesn't scale well to N characters — that's why we have NSCharacterSet. :-) http://stackoverflow.com/questions/1774766/how-do-i-trim-and-n-in-nsmutablestring/1774823#1774823 Comment by Quinn Taylor on How do I trim " " and "\n" in NSMutableString. Quinn Taylor 2009-11-21T07:35:23Z 2009-11-21T07:35:23Z This is a good approach. It returns an immutable string, but there's really not a good alternative. Also see <a href="http://stackoverflow.com/questions/1422369/" rel="nofollow">stackoverflow.com/questions/1422369</a> and file a duplicate of &lt;rdar://problem/7230868&gt; ER: Need for -[NSMutableString trimCharactersInSet:]