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
- flutter 회전
- NotificationService Extension
- 스위프트
- 스위프트 푸시
- Swift flutterview
- Flutter UIKitView MethodChannel
- 스위프트 앨범
- Swift flutterviewcontroller
- 스위프트 테이블 뷰 셀
- 스위프트 웹뷰
- Flutter NativeView
- 스위프트 카메라
- 안드로이드 에러
- 스위프트 UserDefaults
- 안드로이드 바로가기
- swift autolayout
- flutter rotate
- 안드로이드 FCM
- 앱 백그라운드 푸시 데이터 저장
- swift sms
- 플러터 뷰 컨트롤러
- 앱 꺼졌을 때 푸시 데이터 저장
- 안드로이드 앨범
- FlutterView MethodChannel
- 푸시 데이터 저장
- swift 문자
- native flutter view
- 노티피케이션 익스텐션
- silent push
- 안드로이드 숏컷
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