Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. protocol CustomDrawing {}
  2.  
  3. extension CustomDrawing where Self: UIView {
  4. func myDrawingCode() {
  5. // Whatever
  6. }
  7. }
  8.  
  9. class CustomLabel: UILabel, CustomDrawing {
  10. override func draw(_ rect: CGRect) {
  11. super.draw(rect)
  12. myDrawingCode()
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement