반응형
📄 Open a URL in Safari Source Code by Swift
guard let url = URL(string: "https://www.naver.com") else { return }
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
} else {
// Here, UIApplication.shread.open Error Source Code.
}
🚀 REFERENCE
반응형
'# 애플 [Apple] > iOS' 카테고리의 다른 글
[iOS] Swift 구조체와 클래스 차이점 (Struct and Class Difference) (0) | 2020.02.15 |
---|---|
[iOS] 🔗 유용한 iOS 오픈소스 라이브러리 (Awesome Open Source Library) (0) | 2020.01.15 |
[iOS] SQLite (SQLite With Swift Tutorial: Getting Started) (0) | 2019.10.25 |
[iOS] 애플 암호화 개발 도구 (Apple CryptoKit Swift Framework) (0) | 2019.10.21 |
[iOS] iOS/macOS 개발자 면접 예상 질문 (Interview Question) (0) | 2019.08.03 |
댓글