Files
SideMenu/Example/PresentedViewController.swift
T
2016-11-03 16:19:39 +08:00

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)
}
}