aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/MainViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-08-11 13:19:21 +0530
committerRoopesh Chander <roop@roopc.net>2018-10-27 15:13:01 +0530
commit700c7221a9cf54c62431cc1e6a6e3207e5fe6f3b (patch)
treee210429a300ebc817cbd38df222a3b576cc2a4d3 /WireGuard/WireGuard/MainViewController.swift
parentMove DEVELOPMENT_TEAM into an xcconfig out of the git repo (diff)
downloadwireguard-apple-700c7221a9cf54c62431cc1e6a6e3207e5fe6f3b.tar.xz
wireguard-apple-700c7221a9cf54c62431cc1e6a6e3207e5fe6f3b.zip
Remove storyboard and create UI from code
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/MainViewController.swift')
-rw-r--r--WireGuard/WireGuard/MainViewController.swift15
1 files changed, 15 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/MainViewController.swift b/WireGuard/WireGuard/MainViewController.swift
new file mode 100644
index 0000000..a296b5f
--- /dev/null
+++ b/WireGuard/WireGuard/MainViewController.swift
@@ -0,0 +1,15 @@
+//
+// MainViewController.swift
+// WireGuard
+//
+// Created by Roopesh Chander on 11/08/18.
+// Copyright © 2018 Roopesh Chander. All rights reserved.
+//
+
+import UIKit
+
+class MainViewController: UIViewController {
+ override func loadView() {
+ self.view = UIView()
+ }
+}