Created
May 5, 2017 20:03
-
-
Save nixta/06eb01ae8e67d14672d1305ed6379986 to your computer and use it in GitHub Desktop.
Name an AGSGraphicsOverlay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension AGSGraphicsOverlay { | |
fileprivate struct AssociatedKeys { | |
static var referenceNameKey = "geodev_referenceName" | |
} | |
var referenceName:String? { | |
get { | |
return objc_getAssociatedObject(self, &AssociatedKeys.referenceNameKey) as? String | |
} | |
set { | |
objc_setAssociatedObject(self, &AssociatedKeys.referenceNameKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment