Skip to content

Instantly share code, notes, and snippets.

@serhatsezer
Created August 15, 2018 17:14
Show Gist options
  • Save serhatsezer/4abe382229b001b37b1ee2f46e62b90f to your computer and use it in GitHub Desktop.
Save serhatsezer/4abe382229b001b37b1ee2f46e62b90f to your computer and use it in GitHub Desktop.
private var associateKey: Void?
extension ProductDetail {
var totalSumOfBasket: String? {
get {
return objc_getAssociatedObject(self, &associateKey) as? String
}
set {
objc_setAssociatedObject(self, &associateKey, newValue, .OBJC_ASSOCIATION_RETAIN)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment