vendoo_v1.0/Vendoo/EtsySettingsViewController.swift

46 lines
1.1 KiB
Swift

//
// EtsySettingsViewController.swift
// Vendoo
//
// Created by Okechi Onyeje on 6/29/16.
// Copyright © 2016 Okechi Onyeje. All rights reserved.
//
import UIKit
class EtsySettingsViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
//MARK:- IBActions
extension EtsySettingsViewController {
@IBAction func navigateBack(sender: AnyObject){
self.dismissViewControllerAnimated(true, completion: nil)
}
}