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
- Clean Code
- uiscrollview
- ribs
- Xcode
- swift documentation
- 리펙토링
- ios
- swiftUI
- Refactoring
- 애니메이션
- UICollectionView
- Observable
- SWIFT
- scrollview
- collectionview
- uitableview
- 스위프트
- UITextView
- rxswift
- Human interface guide
- Protocol
- map
- clean architecture
- 리팩토링
- combine
- HIG
- RxCocoa
- MVVM
- tableView
- 클린 코드
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 화면전환 present, push 중첩하여 사용 이해하기 본문
화면전환 기초
- present: 현재 화면과 다른 새로운 과업을 수행할 때
- push: 현재 화면과 연관된 과업을 수행할 때
화면전환이 되는 케이스와 안되는 케이스
- 같은 화면에서 present 여러번은 불가능
- crash 발생은 하지 않음
- crash가 발생하는 케이스는 자기 자신 화면을 띄우는 경우나 같은 화면을 띄우는 경우에 발생
@objc
private func tap() {
// A화면에서 B화면을 present > A화면에서 C화면을 present (x)
present(vc1, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 3, execute: {
self.present(self.vc2, animated: true)
})
}
(같은 화면을 띄우면 crash 발생)
@objc
private func tap() {
present(vc1, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 3, execute: {
self.present(self.vc1, animated: true) // crash!!
})
}

- 같은 화면에서 present 여러번이 아니면 가능 (같은 화면에서 push하고 present해도 가능)
(1) A화면에서 B화면을 present > B화면에서 C화면을 present (o)
present(vc1, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 5, execute: {
self.vc1.present(self.vc2, animated: true)
})
(2) A화면에서 B화면을 push > A화면에서 C화면을 present (o)
- A화면에서 present가 여러번 되면 화면전환이 안되지만, push, present로 되어있으면 가능
navigationController?.pushViewController(vc1, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 3, execute: {
print("<1> present!!!")
self.present(self.vc2, animated: true)
})
(3) A화면에서 B화면을 push > B화면에서 C화면을 present (o)
navigationController?.pushViewController(vc1, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 5, execute: {
self.vc1.present(self.vc2, animated: true)
})
'iOS 응용 (swift)' 카테고리의 다른 글
Comments