일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Human interface guide
- 리펙터링
- 클린 코드
- map
- SWIFT
- Xcode
- 리팩토링
- rxswift
- Observable
- RxCocoa
- HIG
- Protocol
- 리펙토링
- ios
- ribs
- uiscrollview
- UICollectionView
- swift documentation
- 애니메이션
- swiftUI
- tableView
- combine
- MVVM
- UITextView
- Clean Code
- 스위프트
- Refactoring
- uitableview
- collectionview
- clean architecture
- Today
- Total
목록UITextView (20)
김종권의 iOS 앱 개발 알아가기
* 코드로 UI 작성에 편리를 위해 사용한 프레임워크 - SnapKit - Then UITextView의 placeholder UITextView에는 UITextField처럼 placeholder 프로퍼티가 없기 때문에 직접 구현해서 사용 ex) UITextField에서의 placeholder // UITextField에서의 placeholder textField.placeholder = "abcd@email.com" UITextView에서 프레임워크 없이 placeholder 직접 구현해서 사용하는 방법 이전 포스팅 글 `TextView placeholder 적용 방법` 참고 UITextView+Placeholder 프레임워크 아래처럼 placeholder 텍스트, 컬러, attributed까지 설정할..
* 코드로 UI 작성에 편리를 위해 사용한 프레임워크 - SnapKit - Then pod 'SnapKit' pod 'Then' Done 버튼 탭 시 동작 아이디어 Done 버튼을 탭하게 되면, escape string 값 '\n' 입력으로 처리되는 형태이므로, textField(_:shouldChanceCharactersIn:replacementString:) 델리게이트에서 처리 `\n`값을 받은 경우, 입력되는 처리를 한 후 false를 리턴하여, \n 입력을 막는 형태 UI 준비 Done버튼이 눌렸을 때 UILabel에 값을 입력하는 형태 UILabel - 텍스트 필드의 결과값 입력 textField - 인풋 // ViewController.swift import UIKit import SnapKi..
커스텀 뷰에서 뷰를 터치해도 키보드가 올라게 하는 방법 커스텀 뷰 터치 이벤트 바인딩에서 UITextField에 접근하여 becomeFirstResponder()를 호출해줄 수 있지만 커스텀 뷰를 사용할땐 UI요소가 private이 되어야 응집도가 높아지므로 다른 방법 사용 CustomView에서 becomeFirstResponder(), resignFirstResponder()를 재정의하여 사용 // MyCustomView.swift @discardableResult override func becomeFirstResponder() -> Bool { super.becomeFirstResponder() return self.textField.becomeFirstResponder() } @discardab..
UITextView UITextField는 UI가 한 줄이지만 UITextView는 "TextArea"개념 (넓은 면적) UITextView는 placeholder를 제공하지 않음 placeholder를 구현하려고 하면, 입력 시 한글 자모가 불리되는 현상 발생 STTextView 프레임워크 placeholder가 구현된 프레임워크 의존성 pod 'STTextView' 사용 UITextView 추가 class - STTextView로 설정 placeholder에 입력 (font는 text와 동일한 font를 갖음) cursor 색 설정 - tint color * 참고: github.com/onl1ner/STTextView