123456789101112131415161718192021 |
- #import "BenchmarkIPhoneAppDelegate.h"
- #import "BenchmarkIPhoneViewController.h"
- #import "PerformanceTesting.h"
- @implementation BenchmarkIPhoneAppDelegate
- @synthesize window;
- @synthesize viewController;
- - (void)applicationDidFinishLaunching:(UIApplication *)application
- {
- window.rootViewController = viewController;
- [window makeKeyAndVisible];
-
- [PerformanceTesting startPerformanceTests];
- }
- @end
|