User Michael Buckley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:32:06Z http://stackoverflow.com/feeds/user/22540 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178434/what-is-the-best-way-to-solve-an-objective-c-namespace-collision/181394#181394 4 Answer by Michael Buckley for What is the best way to solve an Objective-C namespace collision? Michael Buckley 2008-10-08T04:51:59Z 2008-10-08T05:25:08Z <p>If you do not need to use classes from both frameworks at the same time, and you are targeting platforms which support NSBundle unloading (OS X 10.4 or later, no GNUStep support), and performance really isn't an issue for you, I believe that you could load one framework every time you need to use a class from it, and then unload it and load the other one when you need to use the other framework.</p> <p>My initial idea was to use NSBundle to load one of the frameworks, then copy or rename the classes inside that framework, and then load the other framework. There are two problems with this. First, I couldn't find a function to copy the data pointed to rename or copy a class, and any other classes in that first framework which reference the renamed class would now reference the class from the other framework.</p> <p>You wouldn't need to copy or rename a class if there were a way to copy the data pointed to by an IMP. You could create a new class and then copy over ivars, methods, properties and categories. Much more work, but it is possible. However, you would still have a problem with the other classes in the framework referencing the wrong class.</p> <p>EDIT: The fundamental difference between the C and Objective-C runtimes is, as I understand it, when libraries are loaded, the functions in those libraries contain pointers to any symbols they reference, whereas in Objective-C, they contain string representations of the names of thsoe symbols. Thus, in your example, you can use dlsym to get the symbol's address in memory and attach it to another symbol. The other code in the library still works because you're not changing the address of the original symbol. Objective-C uses a lookup table to map class names to addresses, and it's a 1-1 mapping, so you can't have two classes with the same name. Thus, to load both classes, one of them must have their name changed. However, when other classes need to access one of the classes with that name, they will ask the lookup table for its address, and the lookup table will never return the address of the renamed class given the original class's name.</p> http://stackoverflow.com/questions/160890/generating-random-numbers-in-objective-c/161141#161141 6 Answer by Michael Buckley for Generating Random Numbers in Objective-C Michael Buckley 2008-10-02T06:49:40Z 2008-10-02T06:49:40Z <p>According to the manual page for rand(3), the rand family of functions have been obsoleted by random(3). This is due to the fact that the lower 12 bits of rand() go through a cyclic pattern. To get a random number, just seed the generator by calling srandom() with an unsigned seed, and then call random(). So, the equivalent of the code above would be</p> <pre><code>#import &lt;stdlib.h&gt; #import &lt;time.h&gt; srandom(time(NULL)); random() % 74; </code></pre> <p>You'll only need to call srandom() once in your program unless you want to change your seed. Although you said you didn't want a discussion of truly random values, rand() is a pretty bad random number generator, and random() still suffers from modulo bias, as it will generate a number between 0 and RAND_MAX. So, e.g. if RAND_MAX is 3, and you want a random number between 0 and 2, you're twice as likely to get a 0 than a 1 or a 2.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/156463#156463 17 Answer by Michael Buckley for Sending a message to nil? Michael Buckley 2008-10-01T06:32:29Z 2008-10-01T17:34:13Z <p>Well, I think it can be described using a very contrived example. Let's say you have a method in Java which prints out all of the elements in an ArrayList:</p> <pre><code>void foo(ArrayList list) { for(int i = 0; i &lt; list.size(); ++i){ System.out.println(list.get(i).toString()); } } </code></pre> <p>Now, if you call that method like so: someObject.foo(NULL); you're going to probably get a NullPointerException when it tries to access list, in this case in the call to list.size(); Now, you'd probably never call someObject.foo(NULL) with the NULL value like that. However, you may have gotten your ArrayList from a method which returns NULL if it runs into some error generating the ArrayList like someObject.foo(otherObject.getArrayList());</p> <p>Of course, you'll also have problems if you do something like this:</p> <pre><code>ArrayList list = NULL; list.size(); </code></pre> <p>Now, in Objective-C, we have the equivalent method:</p> <pre><code>- (void)foo:(NSArray*)anArray { int i; for(i = 0; i &lt; [anArray count]; ++i){ NSLog(@"%@", [[anArray objectAtIndex:i] stringValue]; } } </code></pre> <p>Now, if we have the following code:</p> <pre><code>[someObject foo:nil]; </code></pre> <p>we have the same situation in which Java will produce a NullPointerException. The nil object will be accessed first at [anArray count] However, instead of throwing a NullPointerException, Objective-C will simply return 0 in accordance with the rules above, so the loop will not run. However, if we set the loop to run a set number of times, then we're first sending a message to anArray at [anArray objectAtIndex:i]; This will also return 0, but since objectAtIndex: returns a pointer, and a pointer to 0 is nil/NULL, NSLog will be passed nil each time through the loop. (Although NSLog is a function and not a method, it prints out (null) if passed a nil NSString.</p> <p>In some cases it's nicer to have a NullPointerException, since you can tell right away that something is wrong with the program, but unless you catch the exception, the program will crash. (In C, trying to dereference NULL in this way causes the program to crash.) In Objective-C, it instead just causes possibly incorrect run-time behavior. However, if you have a method that doesn't break if it returns 0/nil/NULL/a zeroed struct, then this saves you from having to check to make sure the object or parameters are nil.</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/138452#138452 1 Answer by Michael Buckley for Objective-C switch using objects? Michael Buckley 2008-09-26T09:26:59Z 2008-09-26T19:41:32Z <p>I hope you'll all forgive me for going out on a limb here, but I would like to address the more general question of parsing XML documents in Cocoa without the need of if-else statements. The question as originally stated assigns the current element text to an instance variable of the character object. As jmah pointed out, this can be solved using key-value coding. However, in a more complex XML document this might not be possible. Consider for example the following.</p> <pre><code>&lt;xmlroot&gt; &lt;corporationID&gt; &lt;stockSymbol&gt;EXAM&lt;/stockSymbol&gt; &lt;uuid&gt;31337&lt;/uuid&gt; &lt;/corporationID&gt; &lt;companyName&gt;Example Inc.&lt;/companyName&gt; &lt;/xmlroot&gt; </code></pre> <p>There are multiple approaches to dealing with this. Off of the top of my head, I can think of two using NSXMLDocument. The first uses NSXMLElement. It is fairly straightforward and does not involve the if-else issue at all. You simply get the root element and go through its named elements one by one.</p> <pre><code>NSXMLElement* root = [xmlDocument rootElement]; // Assuming that we only have one of each element. [character setCorperationName:[[[root elementsForName:@"companyName"] objectAtIndex:0] stringValue]]; NSXMLElement* corperationId = [root elementsForName:@"corporationID"]; [character setCorperationStockSymbol:[[[corperationId elementsForName:@"stockSymbol"] objectAtIndex:0] stringValue]]; [character setCorperationUUID:[[[corperationId elementsForName:@"uuid"] objectAtIndex:0] stringValue]]; </code></pre> <p>The next one uses the more general NSXMLNode, walks through the tree, and directly uses the if-else structure.</p> <p>// The first line is the same as the last example, because NSXMLElement inherits from NSXMLNode NSXMLNode* aNode = [xmlDocument rootElement]; while(aNode = [aNode nextNode]){ if([[aNode name] isEqualToString:@"companyName"]){ [character setCorperationName:[aNode stringValue]]; }else if([[aNode name] isEqualToString:@"corporationID"]){ NSXMLNode* correctParent = aNode; while((aNode = [aNode nextNode]) == nil &amp;&amp; [aNode parent != correctParent){ if([[aNode name] isEqualToString:@"stockSymbol"]){ [character setCorperationStockSymbol:[aNode stringValue]]; }else if([[aNode name] isEqualToString:@"uuid"]){ [character setCorperationUUID:[aNode stringValue]]; } } } }</p> <p>This is a good candidate for eliminating the if-else structure, but like the original problem, we can't simply use switch-case here. However, we can still eliminate if-else using NSInvocation. The first step is to define the a method for each element.</p> <pre><code>- (NSNode*)parse_companyName:(NSNode*)aNode { [character setCorperationName:[aNode stringValue]]; return aNode; } - (NSNode*)parse_corporationID:(NSNode*)aNode { NSXMLNode* correctParent = aNode; while((aNode = [aNode nextNode]) == nil &amp;&amp; [aNode parent != correctParent){ [self invokeMethodForNode:aNode prefix:@"parse_corporationID_"]; } return [aNode previousNode]; } - (NSNode*)parse_corporationID_stockSymbol:(NSNode*)aNode { [character setCorperationStockSymbol:[aNode stringValue]]; return aNode; } - (NSNode*)parse_corporationID_uuid:(NSNode*)aNode { [character setCorperationUUID:[aNode stringValue]]; return aNode; } </code></pre> <p>The magic happens in the invokeMethodForNode:prefix: method. We generate the selector based on the name of the element, turn it into an NSInvocation, pass aNode in as the only parameter (NSInvocation parameters start at 2), and invoke the NSInvocation. Presto bango, we've eliminated the need for an if-else statement. Here's the code for that method.</p> <pre><code>- (NSNode*)invokeMethodForNode:(NSNode*)aNode prefix:(NSString*)aPrefix { NSNode* ret = nil; NSMutableString* methodName = [NSMutableString stringWithCapacity:[prefix length] + [[aNode name] length] + 1]; [methodName appendString:prefix]; [methodName appendString:[aNode name]; [methodName appendString"@":"]; SEL selector = NSSelectorFromString(methodName); NSMethodSignature* sig = [[self class] instanceMethodSignatureForSelector:selector]; if(sig != nil){ NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:sig]; [invocation setSelector:selector]; [invocation setTarget:self]; [invocation setArgument:&amp;aNode atIndex:2]; [invocation invoke]; [invocation getReturnValue:&amp;ret]; } return ret; } </code></pre> <p>Now, instead of our larger if-else statement (the one that differentiated between companyName and corporationID), we can simply write one line of code</p> <pre><code>NSXMLNode* aNode = [xmlDocument rootElement]; while(aNode = [aNode nextNode]){ aNode = [self invokeMethodForNode:aNode prefix:@"parse_"]; } </code></pre> <p>Now I apologize if I got any of this wrong, it's been a while since I've written anything with NSXMLDocument, it's late at night and I didn't actually test this code. So if you see anything wrong, please leave a comment or edit this answer.</p> <p>However, I believe I have just shown how NSInvocation can be used in Cocoa to completely eliminate if-else statements in cases like this. There are a few gotchas and corner cases. You have to make sure that the method names you generate aren't going to call other methods, especially if your NSInvocation is targeting another object, and this particular method naming scheme won't work on elements with non-alphanumeric characters. You could get around that by escaping the XML element names in your method names somehow, or by building an NSDictioanry using the method names as the keys and the selectors as the values. This can get pretty memory intensive and end up taking a longer time. NSInvocation dispatch like I described is pretty fast. For very large if-else statements, this method may even be faster than an if-else statement.</p> http://stackoverflow.com/questions/56708/objective-c-for-windows/141197#141197 10 Answer by Michael Buckley for Objective C for Windows Michael Buckley 2008-09-26T18:42:43Z 2008-09-26T18:42:43Z <p>Expanding on the two previous answers, if you just want Objective-C but not any of the Cocoa frameworks, than gcc will work on any platform. You can use it through Cygwin or get MinGW. However, if you want the Cocoa frameworks, or at least a reasonable subset of them, than GNUStep and Cocotron are your best bets.</p> <p>Cocotron implements a lot of stuff that GNUStep does not, such as CoreGraphics and CoreData, though I can't vouch for how complete their implementation is on a specific framework. Their aim is to keep Cocotron up to date with the latest version of OS X so that any viable OS X program can run on Windows. Because GNUStep typically uses the latest version of gcc, they also add in support for Objective-C++ and a lot of the Objective-C 2.0 features.</p> <p>I haven't tested those features with GNUStep, but if you use a sufficiently new version of gcc, you might be able to use them. I was not able to use Objective-C++ with GNUStep a few years ago. However, GNUStep does compile from just about any platform. Cocotron is a very mac-centric project. Although it is probably possible to compile it on other platforms, it comes XCode project files, not makefiles, so you can only compile its frameworks out of the box on OS X. It also comes with instructions on compiling Windows apps on XCode, but not any other platform. Basically, it's probably possible to set up a Windows development environment for Cocotron, but it's not as easy as setting one up for GNUStep, and you'll be on your own, so GNUStep is definitely the way to go if you're developing on Windows as opposed to just for Windows.</p> <p>For what it's worth, Cocotron is licensed under the MIT license, and GNUStep is licensed under the LGPL.</p> http://stackoverflow.com/questions/135112/java-developer-meets-objectivec-on-mac-os/137838#137838 5 Answer by Michael Buckley for Java Developer meets ObjectiveC on Mac OS Michael Buckley 2008-09-26T04:52:40Z 2008-09-26T07:05:29Z <p>Having purchased both of the books in your question, I recommend Cocoa Programming for Mac OS X as a quick way to learn the language and the Cocoa framework, and is probably the fastest way to start producing real applications in Cocoa. I highly recommend it. Programming in Objective-C 2.0 is a great reference book, but if you already know C, there's no much it's going to teach you that you can't pick up from the other book. However, if you ever need to a list of all the reserved keywords in Objective-C, that's the book to go to.</p> <p>All of the user interface can be generated progmatically, but you'll find it much easier to use Interface Builder, which comes with XCode, to lay out the user interface. You'll end up with a lot less code. With bindings, you can even eliminate code which isn't directly related to laying out the interface. The details are in the Cocoa Programming for Mac OS X book.</p> <p>The one big thing I miss from Java is the collection API. In Cocoa, you just get NSSet, NSArray, and NSDictionary, and there's no analog to the Comparable interface. These classes are also immutable, but have mutable versions such as NSMutableArray.</p> <p>I actually haven't played with the Garbage Collection in Objective-C 2.0. In previous versions of Objective-C, memory management was handled by the retain, release, and autorelease methods. Objects were created with a retain count of 1. Retaining incremented that count, releasing decremented it, and autoreleasing objects is a little more complicated. Again, the Cocoa Programming book explains it well. Garbage collection is an option, and if it's turned on, the retain, release and autorelease methods do nothing. However, if you are writing a library or framework to be used by others, you should program it as if garbage collection is turned off. That way applications can use it whether or not they have garbage collection turned on.</p> <p>As for Web resources, <a href="http://cocoadevcentral.com/" rel="nofollow">http://cocoadevcentral.com/</a> is a great site with beginner tutorials. The CocoaDev Wiki at <a href="http://www.cocoadev.com/" rel="nofollow">http://www.cocoadev.com/</a> contains detailed information on a lot of topics, and you can usually find some useful information and people on the cocoa-dev mailing list <a href="http://lists.apple.com/mailman/listinfo/cocoa-dev" rel="nofollow">http://lists.apple.com/mailman/listinfo/cocoa-dev</a></p> <p>iPhone development is a little different, and the details are restricted by an NDA. However, if you get approved by Apple to get access to the iPhone developer center, Apple has provided some great video overviews of the differences, which point you to the documentation you need to make the jump from Mac OS X to iPhone OS X programming.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156317#156317 Comment by Michael Buckley on What are best practices that you use when writing Objective-C and Cocoa? Michael Buckley 2008-10-01T07:43:03Z 2008-10-01T07:43:03Z I'd just like to pipe in and voice my support for namespacing category methods. It just seems like the right thing to do.