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 |
Tags
- swift sms
- 앱 백그라운드 푸시 데이터 저장
- swift autolayout
- Flutter UIKitView MethodChannel
- 안드로이드 에러
- 스위프트 카메라
- 푸시 데이터 저장
- 스위프트 앨범
- Flutter NativeView
- FlutterView MethodChannel
- 스위프트 푸시
- 스위프트 UserDefaults
- swift 문자
- silent push
- flutter rotate
- Swift flutterview
- NotificationService Extension
- Swift flutterviewcontroller
- 안드로이드 숏컷
- 안드로이드 앨범
- 스위프트 웹뷰
- flutter 회전
- 스위프트
- 안드로이드 바로가기
- native flutter view
- 앱 꺼졌을 때 푸시 데이터 저장
- 노티피케이션 익스텐션
- 스위프트 테이블 뷰 셀
- 안드로이드 FCM
- 플러터 뷰 컨트롤러
Archives
- Today
- Total
Things take time
[SWIFT] 뷰 컨트롤러 종료시 좌우로 화면 종료하기(dissmiss) 본문
[개요]
기본적으로 self.dismiss(animated: true...)를 할 경우, 화면이 위에서 아래로 종료되는 것이 일반적이다. 여기서 화면에 애니메이션을 줘서 좌->우 혹은 우->좌 방향으로 화면이 가로로 닫히고 싶다면 사용하면 된다.
요지는 dismiss는 사용하되 animated를 false로 주며, 이 전에 애니메이션을 사용하면 된다.
let transition = CATransition()
transition.duration = 0.5
transition.timingFunction = CAMediaTimingFunction(name: CAMediaTimingFunctionName.easeInEaseOut)
transition.type = CATransitionType.push
transition.subtype = CATransitionSubtype.fromRight
self.view.window!.layer.add(transition, forKey: nil)
self.dismiss(animated: false, completion: nil)
출처는 stackOverFlow, 너무 많은 곳에서 봐서..
'iOS (기능)' 카테고리의 다른 글
[SWIFT] iOS 13대응 - UI(Modal 뷰, Present, 다크모드, StatusBar Color) (4) | 2019.09.24 |
---|---|
[SWIFT] iOS13 - Swift UI란 무엇인가(UIKit은 ??) (2) | 2019.09.24 |
[SWIFT] 현재 날짜, 형식, 시간, 분 구하기 / 날짜 차이 구하기 (0) | 2019.06.12 |
[SWIFT] 테이블 뷰 에서 AutomaticDimension 사용시, 이미지뷰에 따른 높이 조절하기 (0) | 2019.04.08 |
[SWIFT] Autolayout, 오토레이아웃에서 Android의 Gone과 같은 뷰 조절을 해보자. (0) | 2019.03.28 |