From 15fd5cdc300717526570f67ed51b792c75f3505e Mon Sep 17 00:00:00 2001 From: Adam Venturella Date: Sat, 12 Dec 2015 14:39:08 -0800 Subject: [PATCH] testing region concept --- Events/Platforms/iOS/RegionSegue.swift | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Events/Platforms/iOS/RegionSegue.swift diff --git a/Events/Platforms/iOS/RegionSegue.swift b/Events/Platforms/iOS/RegionSegue.swift new file mode 100644 index 0000000..2ed2d18 --- /dev/null +++ b/Events/Platforms/iOS/RegionSegue.swift @@ -0,0 +1,17 @@ +// +// RegionSegue.swift +// Events +// +// Created by Adam Venturella on 12/12/15. +// Copyright © 2015 BLITZ. All rights reserved. +// + +import Foundation +import UIKit + +class RegionEmbedSegue: UIStoryboardSegue{ + override func perform() { + print(self.sourceViewController) + print(self.destinationViewController) + } +} \ No newline at end of file