Skip to content

Instantly share code, notes, and snippets.

@mauricerkelly
Created January 6, 2015 10:24
Show Gist options
  • Save mauricerkelly/4a1e8e63ab4f6549279a to your computer and use it in GitHub Desktop.
Save mauricerkelly/4a1e8e63ab4f6549279a to your computer and use it in GitHub Desktop.
Draggable Views
import UIKit
protocol Draggable {
func draggableViewMethod()
}
class DraggableView: UIView, Draggable {
func draggableViewMethod() {
}
}
var dragView: DraggableView = DraggableView()
dragView.draggableViewMethod()
dragView.didMoveToWindow()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment