We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very useful to associate any type of object: structs/enums currently associatedObject allows to associate just AnyObject instances
private class Box<T> { let unbox: T init(_ value: T) { self.unbox = value } } extension NSObject { public final func associatedObject<T>(key key: UnsafePointer<()>, @noescape initial: () -> T) -> T { if let boxedObject = objc_getAssociatedObject(self, key) as? Box<T> { return boxedObject.unbox } let object = initial() objc_setAssociatedObject(self, key, Box(object), .OBJC_ASSOCIATION_RETAIN) return object } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Very useful to associate any type of object: structs/enums
currently associatedObject allows to associate just AnyObject instances
The text was updated successfully, but these errors were encountered: