Last active
August 9, 2017 00:16
-
-
Save ArchieR7/ea7f79fd7637b6e6ebc9c22df5cef740 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! | |
@IBOutlet private weak var passwordTextField: UITextField! | |
@IBOutlet private weak var addressTextField: UITextField! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
setUpView() | |
} | |
private func setUpView() { | |
nameTextField.placeholder = "給值" | |
passwordTextField.placeholder = "給值" | |
addressTextField.placeholder = "給值" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment