Skip to content

Instantly share code, notes, and snippets.

@PimCoumans
Created June 5, 2020 13:16
Show Gist options
  • Save PimCoumans/f04af51741456edb8f2eaa17a20291b8 to your computer and use it in GitHub Desktop.
Save PimCoumans/f04af51741456edb8f2eaa17a20291b8 to your computer and use it in GitHub Desktop.
UIView with a generic CALayer class
class LayerView<Layer: CALayer>: UIView {
override static var layerClass: AnyClass {
return Layer.self
}
var castedLayer: Layer {
return super.layer as! Layer
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment