Skip to content

Instantly share code, notes, and snippets.

@ArchieR7
Created August 9, 2017 00:09
Show Gist options
  • Save ArchieR7/1ec0f29f04623a6757177b38a7a6da0c to your computer and use it in GitHub Desktop.
Save ArchieR7/1ec0f29f04623a6757177b38a7a6da0c to your computer and use it in GitHub Desktop.
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