Created
August 9, 2017 00:09
-
-
Save ArchieR7/1ec0f29f04623a6757177b38a7a6da0c 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 ViewController: UIViewController { | |
@IBOutlet private weak var nameTextField: UITextField! { | |
didSet { | |
nameTextField.placeholder = "給值" | |
} | |
} | |
@IBOutlet private weak var passwordTextField: UITextField! { | |
didSet { | |
passwordTextField.placeholder = "給值" | |
} | |
} | |
@IBOutlet private weak var addressTextField: UITextField! { | |
didSet { | |
addressTextField.placeholder = "給值" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment