Created
April 12, 2016 21:15
-
-
Save bjhomer/e912d3c7f298dd7cb97a4df8282ab518 to your computer and use it in GitHub Desktop.
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
class MyClass: NSObject { | |
var loggingProperty: String { | |
let selector = #selector(MyClass.loggingProperty) // error: instance member 'loggingProperty' cannot be used on type 'MyClass' | |
print("accessing", selector) | |
return "Hello" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment