BenchmarkIPhoneAppDelegate.m 505 B

12345678910111213141516171819202122232425
  1. //
  2. // BenchmarkIPhoneAppDelegate.m
  3. // BenchmarkIPhone
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import "BenchmarkIPhoneAppDelegate.h"
  8. #import "BenchmarkIPhoneViewController.h"
  9. #import "PerformanceTesting.h"
  10. @implementation BenchmarkIPhoneAppDelegate
  11. @synthesize window;
  12. @synthesize viewController;
  13. - (void)applicationDidFinishLaunching:(UIApplication *)application
  14. {
  15. window.rootViewController = viewController;
  16. [window makeKeyAndVisible];
  17. [PerformanceTesting startPerformanceTests];
  18. }
  19. @end