From e6817bd795a6fb649ad3a2f25784def9fa1764f7 Mon Sep 17 00:00:00 2001 From: Dallon Archibald Date: Sat, 23 Jan 2021 17:34:28 -0500 Subject: [PATCH] Created Stopwatch controller and adjusted/linked tab bar --- ProjectClock.xcodeproj/project.pbxproj | 4 ++++ ProjectClock/Base.lproj/Main.storyboard | 28 ++++++++++++++++++---- ProjectClock/StopwatchViewController.swift | 19 +++++++++++++++ 3 files changed, 46 insertions(+), 5 deletions(-) create mode 100644 ProjectClock/StopwatchViewController.swift diff --git a/ProjectClock.xcodeproj/project.pbxproj b/ProjectClock.xcodeproj/project.pbxproj index f9fa29e..95840b7 100644 --- a/ProjectClock.xcodeproj/project.pbxproj +++ b/ProjectClock.xcodeproj/project.pbxproj @@ -23,6 +23,7 @@ 7C83963625AF375B0027A94C /* NotificationLogic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C83963525AF375B0027A94C /* NotificationLogic.swift */; }; 7C83963925AF68980027A94C /* TestingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C83963825AF68980027A94C /* TestingViewController.swift */; }; C7E638E825B88F8B00799512 /* MathExpressions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7E638E725B88F8B00799512 /* MathExpressions.swift */; }; + F0DF7C0725BCD9FC0064A26B /* StopwatchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0DF7C0625BCD9FC0064A26B /* StopwatchViewController.swift */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -46,6 +47,7 @@ 7C83963525AF375B0027A94C /* NotificationLogic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationLogic.swift; sourceTree = ""; }; 7C83963825AF68980027A94C /* TestingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingViewController.swift; sourceTree = ""; }; C7E638E725B88F8B00799512 /* MathExpressions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MathExpressions.swift; sourceTree = ""; }; + F0DF7C0625BCD9FC0064A26B /* StopwatchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StopwatchViewController.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -92,6 +94,7 @@ 4FD642DF25B4D5F30069171E /* AlarmActivationViewController.swift */, 4FD642D225B48C380069171E /* AlarmActivator.swift */, 4FF0684425A5F18700304E6B /* Main.storyboard */, + F0DF7C0625BCD9FC0064A26B /* StopwatchViewController.swift */, 7C83963525AF375B0027A94C /* NotificationLogic.swift */, 4F98955125A9260400F51321 /* Net.swift */, 4F509BD125AE22D100726227 /* Models.swift */, @@ -187,6 +190,7 @@ 4F98955225A9260400F51321 /* Net.swift in Sources */, 7C83963925AF68980027A94C /* TestingViewController.swift in Sources */, 4FF0684325A5F18700304E6B /* AccountViewController.swift in Sources */, + F0DF7C0725BCD9FC0064A26B /* StopwatchViewController.swift in Sources */, 4FF0683F25A5F18700304E6B /* AppDelegate.swift in Sources */, 4FD642D325B48C380069171E /* AlarmActivator.swift in Sources */, 4FD642DB25B4B7F60069171E /* Utils.swift in Sources */, diff --git a/ProjectClock/Base.lproj/Main.storyboard b/ProjectClock/Base.lproj/Main.storyboard index 599710b..66054f6 100644 --- a/ProjectClock/Base.lproj/Main.storyboard +++ b/ProjectClock/Base.lproj/Main.storyboard @@ -198,7 +198,7 @@ - + @@ -268,7 +268,23 @@ - + + + + + + + + + + + + + + + + + @@ -615,7 +631,7 @@ - + @@ -632,6 +648,7 @@ + @@ -724,7 +741,7 @@ - + @@ -809,12 +826,13 @@ - + + diff --git a/ProjectClock/StopwatchViewController.swift b/ProjectClock/StopwatchViewController.swift new file mode 100644 index 0000000..51dd620 --- /dev/null +++ b/ProjectClock/StopwatchViewController.swift @@ -0,0 +1,19 @@ +// +// StopwatchViewController.swift +// ProjectClock +// +// Created by Dallon Archibald on 1/23/21. +// + +import UIKit + +class StopwatchViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + + // Do any additional setup after loading the view. + } + + +}