Cocoa Maker Podcast
Cocoa Maker
Mr. Gecko
Cocoa Maker 1 - Getting Started - episode of Cocoa Maker podcast

Cocoa Maker 1 - Getting Started

1 seconds Posted Jan 25, 2010 at 12:52 am.
Example code from episode. #import <Foundation/Foundation.h> int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSString *name = @"World"; if (argc1) { name = [[[NSString alloc] initWithBytes:argv[1] length:strlen(argv[1]) encoding:NSUTF8StringEncoding] autorelease]; } NSLog(@"Hello, %@", name); [pool drain]; return 0; }
0:00
0:01
Download MP3
Show notes
James (MrGeckosMedia.com), joined by, Eduardo (MegaEduX.com), Nick, and Karl, teaches the basics of installing Xcode, setting up a project and making a "Hello, World!" command line utility.