Jessi :D

Swift

Swift

iOS - System Color

iOS System Color 시스템 기본컬러 예) UIColor.Label Name Light Mode Dark Mode label secondaryLabel tertiaryLabel quaternaryLabel systemFill secondarySystemFill tertiarySystemFill quaternarySystemFill placeholderText systemBackground secondarySystemBackground tertiarySystemBackground systemGroupedBackground secondarySystemGroupedBackground tertiarySystemGroupedBackground separator opaqueSeparator link dar..

iOS Swift - 화면을 탭해 키패드 내리기

스위프트 화면을 탭하여 키패드 내리는 동작은 기본인줄 알고 있었다.... 하지만 설정해주지 않으면 동작하지 않는 것. 화면을 탭 했을 때 키패드를 내리는 3가지의 방법 코드보기 @IBAction func tap(_ sender: UITapGestureRecognizer) { //1 self.view.endEditing(true) //2 self.inputField.resignFirstResponder() //3 self.inputField.endEditing(true) }