참고 링크
https://netcanis.tistory.com/124
Senedelegate 등장 이전에는 appdelegate쪽에서 openURL 함수로 스킴 통신을 하였지만 씬델리게이트가 등장하면서 SenenDelegate 쪽에서 스킴 통신을 처리해 주어야한다.
Apple 문서
https://developer.apple.com/documentation/uikit/uiscenedelegate/3238059-scene
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
if let url = URLContexts.first?.url{
}
}
}