Last active
April 27, 2020 20:38
-
-
Save dimpiax/41f01075648aa8fbb0a5176514dff039 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 NatureViewController: UIViewController { | |
@IBOutlet private var label: UILabel! { | |
didSet { | |
label.title = NSLocalizedString("natureTitle", comment: "") | |
} | |
} | |
@IBOutlet private var button: UIButton! { | |
didSet { | |
button.setTitle(NSLocalizedString("saveNatureButton", comment: ""), for: .normal) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment