Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- swift documentation
- Observable
- Clean Code
- ios
- clean architecture
- uitableview
- map
- UITextView
- Xcode
- rxswift
- SWIFT
- tableView
- 스위프트
- 리펙토링
- Human interface guide
- RxCocoa
- MVVM
- 클린 코드
- uiscrollview
- swiftUI
- UICollectionView
- collectionview
- HIG
- ribs
- Protocol
- scrollview
- 리팩토링
- 애니메이션
- combine
- Refactoring
Archives
- Today
- Total
목록inputAccessoryView (1)
김종권의 iOS 앱 개발 알아가기
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..
iOS 응용 (swift)
2021. 9. 6. 21:46