BenchmarkIPhoneAppDelegate.m 419 B

123456789101112131415161718192021
  1. #import "BenchmarkIPhoneAppDelegate.h"
  2. #import "BenchmarkIPhoneViewController.h"
  3. #import "PerformanceTesting.h"
  4. @implementation BenchmarkIPhoneAppDelegate
  5. @synthesize window;
  6. @synthesize viewController;
  7. - (void)applicationDidFinishLaunching:(UIApplication *)application
  8. {
  9. window.rootViewController = viewController;
  10. [window makeKeyAndVisible];
  11. [PerformanceTesting startPerformanceTests];
  12. }
  13. @end