Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Add a comment field in Xcode storyboards
@IBInspectable var comment: String {
set {}
get { return "" }
}
@atomicbird
Copy link
Author

atomicbird commented May 16, 2019

Maybe a little clearer...
Comments will be stored in the storyboard file but don't have any value at run time.

extension UIView {
    @IBInspectable var comment: String {
        set {}
        get { return "" }
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment