17 lines
307 B
Swift
17 lines
307 B
Swift
//
|
|
// PresentedViewController.swift
|
|
//
|
|
// Created by Jon Kent on 12/14/15.
|
|
// Copyright © 2015 Jon Kent. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class PresentedViewController: UIViewController {
|
|
|
|
@IBAction fileprivate func close() {
|
|
self.dismiss(animated: true, completion: nil)
|
|
}
|
|
|
|
}
|