Files
SideMenu/Example/PresentedViewController.swift
2019-11-20 01:35:23 -08:00

17 lines
298 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 private func close() {
dismiss(animated: true, completion: nil)
}
}