【Swift】 라이브러리 "Material Components"의 MDCOutlinedTextField를 사용한 TextField 구현
이것은 무엇입니까?
머티리얼 디자인의 UI가 간단하게 구현할 수 있는 Material Components 를 사용해 이런 느낌의 TextField를 만들고 싶다.
Material Components의 설치 방법은 생략한다.
구현해보기
Stryboard의 TextField를 선택하여 MDCOutlinedTextField
를 설정합니다.
그러면 Controller에 연결한다.
LoginViewController.swiftclass LoginViewController: UIViewController {
// ユーザ名入力欄
@IBOutlet weak var userNameTextField: MDCOutlinedTextField!
// 中略
TextField의 속성을 설정합니다.
LoginViewController.swiftoverride 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.setNormalLabelColor(.gray, for: .normal)
하, 할 수 있어서 좋았다( ;∀;)
Reference
이 문제에 관하여(【Swift】 라이브러리 "Material Components"의 MDCOutlinedTextField를 사용한 TextField 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/antk/items/6a0c755e61c4e471ce5a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
class LoginViewController: UIViewController {
// ユーザ名入力欄
@IBOutlet weak var userNameTextField: MDCOutlinedTextField!
// 中略
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)
}
userIdTextField.setNormalLabelColor(.gray, for: .normal)
Reference
이 문제에 관하여(【Swift】 라이브러리 "Material Components"의 MDCOutlinedTextField를 사용한 TextField 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/antk/items/6a0c755e61c4e471ce5a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)