MVC and Interface Builder
IAP 2010 ❄ edward benson / eob@csail.mit.edu iphonedev.csail.mit.edu
Tuesday, January 12, 2010
MVC and Interface Builder IAP 2010 iphonedev.csail.mit.edu edward - - PowerPoint PPT Presentation
MVC and Interface Builder IAP 2010 iphonedev.csail.mit.edu edward benson / eob@csail.mit.edu Tuesday, January 12, 2010 Information-Driven Applications Tuesday, January 12, 2010 Application Flow UIApplication Main NIB Initialized
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Main NIB Initialized
{ [window makeKeyAndVisible]; }
After which point it is..
Tuesday, January 12, 2010
Tuesday, January 12, 2010
{ [window makeKeyAndVisible]; }
Tuesday, January 12, 2010
@interface RPS2AppDelegate : NSObject <UIApplicationDelegate> { NSManagedObjectModel *managedObjectModel; NSManagedObjectContext *managedObjectContext; NSPersistentStoreCoordinator *persistentStoreCoordinator; UITableViewController *tableViewController; UIWindow *window; }
// Override point for customization after app launch
[window makeKeyAndVisible]; }
[tableViewController release];
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
self.tableView.height - 22, self.tableView.size.width, 22); TTActivityLabel *banner = [[TTActivityLabel alloc] initWithStyle:TTActivityLabelStyleBlackBanner]; banner.text = [ModelBase syncMessage]; [banner sizeToFit];
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
HelloButton
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
responseLabel.text = @"The strongest of foes!"; }
responseLabel.text = @"Cunning and underrated!"; }
responseLabel.text = @"Deadly and quick!"; }
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
Tuesday, January 12, 2010
if (([self isEqualToString:@"rock"] && [other isEqualToString:@"scissors"]) || ([self isEqualToString:@"scissors"] && [other isEqualToString:@"paper"]) || ([self isEqualToString:@"paper"] && [other isEqualToString:@"rock"])) { return YES; } return NO; }
Tuesday, January 12, 2010
Tuesday, January 12, 2010