일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- swiftUI
- Clean Code
- 스위프트
- Protocol
- clean architecture
- Xcode
- uiscrollview
- RxCocoa
- collectionview
- uitableview
- 리팩토링
- rxswift
- 애니메이션
- 리펙토링
- combine
- ios
- map
- 리펙터링
- UITextView
- UICollectionView
- SWIFT
- HIG
- ribs
- MVVM
- 클린 코드
- Observable
- tableView
- Refactoring
- swift documentation
- Today
- Total
목록키보드 (2)
김종권의 iOS 앱 개발 알아가기
커스텀 뷰에서 뷰를 터치해도 키보드가 올라게 하는 방법 커스텀 뷰 터치 이벤트 바인딩에서 UITextField에 접근하여 becomeFirstResponder()를 호출해줄 수 있지만 커스텀 뷰를 사용할땐 UI요소가 private이 되어야 응집도가 높아지므로 다른 방법 사용 CustomView에서 becomeFirstResponder(), resignFirstResponder()를 재정의하여 사용 // MyCustomView.swift @discardableResult override func becomeFirstResponder() -> Bool { super.becomeFirstResponder() return self.textField.becomeFirstResponder() } @discardab..
keyboard 바로 위에 버튼 표출 구현 방법 TextField, TextView안에 내장된 inputAccessoryView 프로퍼티에 UIView 대입 UIView.addSubview로 Button 추가 textField나 TextView의 receiver가 becomeFirstResponse가 된 경우, 키보드가 표출할떄 키보드 위의 영역 nil이 디폴트값이고 따로 View를 추가하여 대입 필요 inputAccessoryView에 대입할 View 정의 lazy var accessoryView: UIView = { return UIView(frame: CGRect(x: 0.0, y: 0.0, width: UIScreen.main.bounds.width, height: 72.0)) }() textFi..