36 lines
885 B
Swift
36 lines
885 B
Swift
//
|
|
// SettingsViewController.swift
|
|
// dcav-uploader
|
|
//
|
|
// Created by Alexander Munch-hansen on 31/07/2017.
|
|
// Copyright © 2017 Guava. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SettingsViewController: 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 prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
// Get the new view controller using segue.destinationViewController.
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
}
|