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
- 리펙토링
- UITextView
- Clean Code
- SWIFT
- Protocol
- swift documentation
- 클린 코드
- 리팩토링
- RxCocoa
- uiscrollview
- Human interface guide
- MVVM
- ios
- 스위프트
- Refactoring
- combine
- map
- rxswift
- Xcode
- 애니메이션
- HIG
- Observable
- 리펙터링
- UICollectionView
- swiftUI
- collectionview
- clean architecture
- ribs
- tableView
- uitableview
Archives
- Today
- Total
목록UIButton 액션 핸들러 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIButton 액션 핸들러 selector없이 간결하게 표현하기 (#selector, #addAction)
기존의 UIButton 액션 핸들러 addTarget 메소드의 #selector 부분에 @objc로 정의한 메소드 이름을 넘기는 방식 button.addTarget(self, action: #selector(handleTap), for: .touchUpInside) @objc private func handleTap() { print("tap button!") } addAction 방식의 액션 핸들러 iOS 14+ 부터 addAction 메소드가 UIControl 확장으로 정의 open class UIControl : UIView { /// Adds the UIAction to a given event. UIActions are uniqued based on their identifier, and sub..
iOS 응용 (swift)
2023. 10. 6. 01:28