summaryrefslogtreecommitdiff
path: root/platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift')
-rw-r--r--platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift21
1 files changed, 21 insertions, 0 deletions
diff --git a/platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift b/platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift
new file mode 100644
index 0000000000..58f489a7d7
--- /dev/null
+++ b/platform/ios/test/OHHTTPStubs/Examples/Swift/AppDelegate.swift
@@ -0,0 +1,21 @@
+//
+// AppDelegate.swift
+// OHHTTPStubsDemo
+//
+// Created by Olivier Halligon on 18/04/2015.
+// Copyright (c) 2015 AliSoftware. All rights reserved.
+//
+
+import UIKit
+
+@UIApplicationMain
+class AppDelegate: UIResponder, UIApplicationDelegate {
+
+ var window: UIWindow?
+
+ func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
+ // Override point for customization after application launch.
+ return true
+ }
+}
+