【Swift】ライブラリ "Material Components" の MDCOutlinedTextField を使ったTextField実装
これはなに
マテリアルデザインのUIが簡単に実装できる Material Components を使ってこんな感じのTextFieldを作りたい。
Material Componentsのインストール方法は省く。
実装してみる
StryboardのTextFieldを選択して MDCOutlinedTextField
を設定する。
そしたらControllerにつなぐ。
class LoginViewController: UIViewController {
// ユーザ名入力欄
@IBOutlet weak var userNameTextField: MDCOutlinedTextField!
// 中略
TextFieldのプロパティを設定していく。
override func viewDidLoad() {
super.viewDidLoad()
userIdTextField.label.text = "ユーザーなまえ"
userIdTextField.placeholder = "なまえをいれなさい"
// TextFieldが選択されていない状態の枠と文字の色
userIdTextField.setOutlineColor(.gray, for: .normal)
userIdTextField.setFloatingLabelColor(.gray, for: .normal)
// 編集中の枠と文字の色
userIdTextField.setOutlineColor(.blue, for: .editing)
userIdTextField.setFloatingLabelColor(.blue, for: .editing)
}
これで上記の動画のようなTextField実装できる。
問題点
――が、ここまではドキュメントを読めば書いてあったんだけど、 userIdTextField.label.text
の部分、つまりここでいう『ユーザーなまえ』の部分の色を変える方法がなかなか見つからなかった(userIdTextField.label.textColor
ではダメだった)。
解決策
userIdTextField.setNormalLabelColor(.gray, for: .normal)
ハー、できてよかった( ;∀;)
Author And Source
この問題について(【Swift】ライブラリ "Material Components" の MDCOutlinedTextField を使ったTextField実装), 我々は、より多くの情報をここで見つけました https://qiita.com/antk/items/6a0c755e61c4e471ce5a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .