Last active
June 18, 2017 14:13
-
-
Save ozgurshn/075768e982275f59f81d2504b54cdf57 to your computer and use it in GitHub Desktop.
Protocol with Delegate Outlet to use directly in Storyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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