Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created October 15, 2018 03:24
Show Gist options
  • Save vialyx/03f5fa0c981359d95a74bd6d6f6be98f to your computer and use it in GitHub Desktop.
Save vialyx/03f5fa0c981359d95a74bd6d6f6be98f to your computer and use it in GitHub Desktop.
protocol ActivityIndicatorProtocol: class {
var activityIndicator: UIView? { get set }
}
extension ActivityIndicatorProtocol {
var activityIndicator: UIView? {
get {
// getter code
return nil
}
set {
// setter code
print("\(newValue)")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment