Skip to content

Commit

Permalink
finished chapter 21
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyoder committed May 8, 2012
1 parent 050128f commit faafb40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions TouchTracker/TouchTracker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TouchTracker/TouchTracker-Prefix.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
VIEW_DEBUG,
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = "TouchTracker/TouchTracker-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
Expand Down Expand Up @@ -274,6 +279,7 @@
DAE0EC161558647100476131 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
3 changes: 3 additions & 0 deletions TouchTracker/TouchTracker/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
#ifdef VIEW_DEBUG
NSLog(@"%@", [[self window] performSelector:@selector(recursiveDescription)]);
#endif
return YES;
}

Expand Down

0 comments on commit faafb40

Please sign in to comment.