Skip to content

Instantly share code, notes, and snippets.

View chrisroff's full-sized avatar

ॐ croff chrisroff

  • South Lake Tahoe, CA
View GitHub Profile
@chrisroff
chrisroff / Dismissible.swift
Created August 25, 2016 15:01
Dismissible & DismissalDelegate Protocols
import UIKit
protocol DismissalDelegate : class {
func finishedShowing(viewController: UIViewController)
}
protocol Dismissible : class {
weak var dismissalDelegate : DismissalDelegate? { get set }
}