Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Nick that completely defeats the whole point of the challenges. They're there for you to learn by figuring out how to master them on your own.

My book doesn't seem too bad binding-wise... but then again it doesn't get *too* heavy use. It does look like the whole cover could come off on the slightest whim. :mad:
 
so this is a book that certainly will be referenced for years to come... i'm just wondering if anyone else has sub par binding on their new book? or if this is normal... for um... developer books? :confused: i'm not *terribly* picky about books, i'm just concerned this is going to fall apart by the end of the year.

Same here, mine did that the second I opened it.
 
Perhaps I should go first.

#import <Cocoa/Cocoa.h>

@interface AppController : NSObject
{
IBOutlet NSTextField *textField;
IBOutlet NSTextField *outPut;
}

-(IBAction)countIt:(id)sender;

@end

#import <Foundation/Foundation.h>
#import "AppController.h"

@implementation AppController;

-(id)init
{
[super init];
NSLog(@"init");

return self;
}

-(IBAction)countIt:(id)sender
{
NSString *string = [textField stringValue];
int stringLengthValue;
stringLengthValue = [string length];
NSString *stringLength;
stringLength = [NSString stringWithFormat: @"The string '%@' has %d characters", string, stringLengthValue];
[outPut setStringValue:stringLength];
NSLog(@"The string '%@' has %d characters", string, stringLengthValue);

}


@end
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.