일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rxswift
- collectionview
- Refactoring
- 리팩토링
- UITextView
- 스위프트
- ios
- Human interface guide
- swiftUI
- uiscrollview
- SWIFT
- Observable
- swift documentation
- Xcode
- clean architecture
- Clean Code
- MVVM
- 리펙터링
- 클린 코드
- ribs
- uitableview
- UICollectionView
- map
- Protocol
- HIG
- RxCocoa
- combine
- 애니메이션
- tableView
- 리펙토링
- Today
- Total
목록PlaceHolder (5)
김종권의 iOS 앱 개발 알아가기
PlaceholderTextView 구현 아이디어 UITextView에는 기본적으로 가지고 있는 placeholder 속성이 없기 때문에 커스텀이 필요 잘못 구현하는 케이스 1) UITextView하나만 가지고 텍스트 입력이 시작될 때 textColor와 text를 순간적으로 변경 -> 포커스 위치가 글씨 맨 오른쪽으로 가거나, 포커스 되는 순간 placeholder 값을 지워함 (placeholder는 한 글자 이상 입력될때 없어지도록 구현 불가( 2) UILabel을 두어 UITextView위에 얹져서 구현 -> 깜빡거리는 포커스보다 UILabel이 위에 있기 때문에 깜빡거리는 포커스가 안보이는 현상 발생 UITextView안에 placeholder 전용으로 사용하는 UITextView를 별도로 두어..
* 코드로 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까지 설정할..
placeholder 적용 textView 초기화 text를 placeHolder 문자열, color를 placeHolder 색상으로 변경 delegate 설정 // ViewController.swift let textViewPlaceHolder = "텍스트를 입력하세요" lazy var textView: UITextView = { let view = UITextView() view.layer.borderWidth = 1.0 view.layer.borderColor = UIColor.lightGray.withAlphaComponent(0.7).cgColor view.textContainerInset = UIEdgeInsets(top: 16.0, left: 16.0, bottom: 16.0, right: ..
Code로 접근 방법 attributedPlaceholder 속성 사용 extension UITextField { func setPlaceholder(color: UIColor) { guard let string = self.placeholder else { return } attributedPlaceholder = NSAttributedString(string: string, attributes: [.foregroundColor: color]) } } 색깔 변경 textField.setPlaceholder(color: .blue) xib에서 접근 방법 User Defined Runtime Attributes에서 속성 추가: placeholderLabel.textColor 결과
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