공유 작업에 대한 사용자 정의 @Environment 값

7961 단어 swiftiosswiftui
SwiftUI에는 현대적이고 유용한 기능이 많이 있습니다. 내가 가장 좋아하는 것 중 하나는 @Environment 속성 래퍼입니다. 이를 통해 현재 로케일 또는 색 구성표와 같은 시스템 전체 설정을 얻을 수 있습니다. iOS 14.0부터 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 관련 기사 목록이 있습니다.
  • Environment Documentation

  • What is @Environment in SwiftUI 작성자

  • The power of Environment in SwiftUI 작성자

  • How to use @EnvironmentObject to share data between views 작성자
  • 좋은 웹페이지 즐겨찾기