Skip to content

Instantly share code, notes, and snippets.

@ozgurshn
Last active June 18, 2017 14:13
Show Gist options
  • Save ozgurshn/075768e982275f59f81d2504b54cdf57 to your computer and use it in GitHub Desktop.
Save ozgurshn/075768e982275f59f81d2504b54cdf57 to your computer and use it in GitHub Desktop.
Protocol with Delegate Outlet to use directly in Storyboard
@objc protocol LocationSelectorDelegate: class {
func showMap(tag: Int)
}
@IBDesignable
class LocationSelectorView: UIView {
@IBOutlet weak var delegate: LocationSelectorDelegate?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment