티스토리 뷰
728x90
반응형
UIImageView UITapGestureRecognizer 로 액션설정하기
// MARK: - @IBOutlet Properties
@IBOutlet var loginImageView: UIImageView!
//...
// MARK: - Methods
func loginTapAction() {
let login = UITapGestureRecognizer(target: self, action: #selector(login))
loginImageView.isUserInteractionEnabled = true
loginImageView.addGestureRecognizer(login)
}
// MARK: - @objc Methods
@objc
func login() {
guard let nextVC = UIStoryboard(name: Const.Storyboard.Name.FirstOnboarding, bundle: nil).instantiateViewController(withIdentifier: Const.ViewController.Name.FirstOnboarding) as? FirstOnboardingVC else {
return
}
self.navigationController?.pushViewController(nextVC, animated: true)
}
728x90
반응형
'iOS' 카테고리의 다른 글
iOS) 제플린에서 쉐도우 설정 및 동적으로 셀크기 설정 (0) | 2021.07.23 |
---|---|
iOS) 서버와 HTTP 통신을 위한 Xcode 설정 (0) | 2021.07.22 |
iOS) AppleDeveloper - Pushing Background Updates (0) | 2021.07.22 |
iOS) masksToBounds 와 clipsToBounds 차이 (0) | 2021.07.22 |
iOS) Core Data custom class (0) | 2021.07.22 |
댓글
TAG
- MVVM
- configurable widget
- YPImagePicker
- Notification
- WidgetKit
- WWDC
- APNS
- async/await
- github
- IOS
- containerBackground
- projectsetting
- 서버통신
- Algorithm
- Objective-C
- RxCocoa
- UserDefaults
- OpenSourceLibrary
- urlsession
- Protocol
- Widget
- Swift
- SwiftUI
- watchOS
- WWDC22
- CloneCoding
- MOYA
- Firebase
- rxswift
- 2022 KAKAO TECH INTERNSHIP
최근에 올라온 글
최근에 달린 댓글
글 보관함
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
링크
- Total
- Today
- Yesterday