Skip to content

Instantly share code, notes, and snippets.

@bjhomer
Created April 12, 2016 21:15
Show Gist options
  • Save bjhomer/e912d3c7f298dd7cb97a4df8282ab518 to your computer and use it in GitHub Desktop.
Save bjhomer/e912d3c7f298dd7cb97a4df8282ab518 to your computer and use it in GitHub Desktop.
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