공유 작업에 대한 사용자 정의 @Environment 값
openURL
값을 사용하여 앱에서 URL을 쉽게 열 수 있습니다.@available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
extension EnvironmentValues {
/// Opens a URL using the appropriate system service.
public var openURL: OpenURLAction { get }
}
단 한 줄의 코드로 뷰의 동작을 확장할 수 있습니다.
import SwiftUI
struct ContentView: View {
@Environment(\.openURL) var openURL
var body: some View {
Button("Share") {
openURL(URL(string: "https://blog.artemnovichkov.com")!)
}
}
}
나는 그것이 후드 아래에서 어떻게 작동하는지 궁금하고
UIActivityViewController
활동 항목을 공유하기 위해 동일한 트릭을 구현하려고했습니다. 결과를 확인해보자!키와 값
먼저 사용자 지정 키를 만들고
EnvironmentKey
프로토콜을 준수하고 기본값을 설정해야 합니다. 지금은 빈 구조체가 됩니다.struct ShareAction {}
struct ShareActionEnvironmentKey: EnvironmentKey {
static let defaultValue: ShareAction = .init()
}
다음으로
EnvironmentValues
를 확장하여 환경에서 ShareAction
를 사용할 수 있도록 해야 합니다.extension EnvironmentValues {
var share: ShareAction {
self[ShareActionEnvironmentKey]
}
}
마지막으로 동일한 구문을 사용하기 위해
callAsFunction
구조체에 ShareAction
를 추가합니다.struct ShareAction {
func callAsFunction(_ activityItems: [Any]) {
let vc = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
UIApplication.shared.windows.first?.rootViewController?.present(vc, animated: true, completion: nil)
}
}
Unfortunately, there is no SwiftUI-way to open this controller. If you use a better way, let me know!
사용자 정의 명목 유형의 호출 가능한 값에 대해 자세히 알아보려면 Github에서 제안SE-0253을 확인하세요.
이제 모든 보기에서
.share
값을 사용하고 활동을 공유할 수 있습니다.import SwiftUI
struct ContentView: View {
@Environment(\.share) var share
var body: some View {
Button("Share") {
share([URL(string: "https://blog.artemnovichkov.com")!])
}
}
}
관련 리소스
최종 코드를 사용할 수 있으며here 관련 기사 목록이 있습니다.
What is @Environment in SwiftUI 작성자
The power of Environment in SwiftUI 작성자
How to use @EnvironmentObject to share data between views 작성자
Reference
이 문제에 관하여(공유 작업에 대한 사용자 정의 @Environment 값), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/artemnovichkov/custom-environment-value-for-share-actions-4g8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)