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 |
Tags
- Xcode
- UITextView
- Human interface guide
- SWIFT
- tableView
- swift documentation
- Clean Code
- rxswift
- uitableview
- ios
- clean architecture
- combine
- uiscrollview
- 스위프트
- MVVM
- swiftUI
- 리펙터링
- UICollectionView
- 리팩토링
- Observable
- HIG
- RxCocoa
- ribs
- Refactoring
- 클린 코드
- 리펙토링
- 애니메이션
- Protocol
- collectionview
- map
Archives
- Today
- Total
목록키보드 위 버튼 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] textField 키보드 위 버튼 (keyboard 위 버튼, 키보드 내리는 방법, 키보드 이벤트, inputAccessoryView, endEditing, tableView)
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