Guest User

Untitled

a guest
Nov 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class MyClass {
  2. }
  3.  
  4. private var key: Void?
  5.  
  6. extention MyClass {
  7. var title: String? {
  8. get {
  9. return objc_getAssociatedObject(self, &key) as? String
  10. }
  11. set {
  12. objc_setAssociatedObject(self, &key, newValue, .OBJC_ASSOCIATED_RETAIN_NONATOMIC)
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment