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 autolayout
- 스위프트 웹뷰
- swift 문자
- 앱 꺼졌을 때 푸시 데이터 저장
- 안드로이드 FCM
- silent push
- 스위프트 앨범
- 노티피케이션 익스텐션
- Swift flutterviewcontroller
- native flutter view
- 스위프트
- 안드로이드 앨범
- flutter rotate
- 스위프트 카메라
- 스위프트 푸시
- swift sms
- 안드로이드 숏컷
- 앱 백그라운드 푸시 데이터 저장
- 스위프트 UserDefaults
- NotificationService Extension
- Flutter UIKitView MethodChannel
- 안드로이드 바로가기
- 플러터 뷰 컨트롤러
- Flutter NativeView
- flutter 회전
- FlutterView MethodChannel
- 푸시 데이터 저장
- Swift flutterview
- 스위프트 테이블 뷰 셀
Archives
- Today
- Total
목록스위프트 스크롤 숨김 (1)
Things take time
[SWIFT] 스크롤할 때, 하단의 탭바 숨기기(보이기)
[로직] 테이블 뷰나 스크롤 뷰가 있는 뷰에서 상하단으로 드래그할 때마다 발생되는 이벤트에 탭 바를 숨기거나 보일때 필요한 기능이다. [코드] @available(iOS 2.0, *) public func scrollViewWillBeginDragging(_ scrollView: UIScrollView){ if scrollView.panGestureRecognizer.translation(in: scrollView).y < 0{ print("y0") changeBar(hidden: false) } } 당연히 딜리게이트는 되어있다고 가정한다. (테이블 뷰 는 스크롤 뷰를 기본적으로 딜리게이트 되어있음) func changeBar(hidden:Bool){ guard let tabBar = self.tabBa..
iOS (기능)
2017. 10. 30. 10:21