iOS How to notice app is will enter foreground
운영 체제: macOS Ventura 13.0.1
사용 버전: Xcode 14.2, Swift, SwiftUI
아래와 같은 App이 있습니다.
사용 버전: Xcode 14.2, Swift, SwiftUI
iOS How to notice app is will enter foreground를 알아보겠습니다.
SwiftUI에는 AppDelegate, SceneDelegate가 없기 때문에 foreground 상태로 들어오는 타이밍을 알기 어렵습니다. 이럴 때 onReceive를 사용해서 알 수 있습니다.
아래와 같은 App이 있습니다.
.onReceive(NotificationCenter.default.publisher(for:
UIApplication.willEnterForegroundNotification)) { _ in }를 적어줍니다.
카테고리: iOS
댓글
댓글 쓰기
궁금한 점은 댓글 달아주세요.
Comment if you have any questions.