【Swift】よく使われている zip ファイルユーティリティ 2つ

よく似た Star数の2つ。

どっちが使いやすそうでしょうか。

 

🙆🏻‍♂️ ZIPFoundation


import ZIPFoundation


try fileManager.zipItem(at: sourceURL, to: destinationURL)


try fileManager.unzipItem(at: sourceURL, to: destinationURL)

共に、利用する FileManager の extension になっています。

👉 weichsel/ZIPFoundation: Effortless ZIP Handling in Swift hatena-bookmark

 

🙆🏻‍♂️ Zip


import Zip


let zipFilePath = try Zip.quickZipFiles([filePath], fileName: "archive")


let unzipDirectory = try Zip.quickUnzipFile(filePath)

Zip クラスの static な関数を利用するようです。

👉 marmelroy/Zip: Swift framework for zipping and unzipping files. hatena-bookmark

 

🙆🏻‍♂️ まとめ

共に、ファイル位置は「URL」を引数として使います。

もしかして、ビルトインで何か関数あるの?


【SwiftUI】ブラウザへのURLリンク

どう書くのか。

最新OSでシンプルなやつのみ。

iOS / macOS 考慮。


import SwiftUI

struct LinkTest: View {

  private let label = "【SwiftUI】ブラウザへのURLリンク"
  private let url = URL(string: "https://android.benigumo.com/20240525/browser-link/")!

  @Environment(\.openURL) private var openURL

  var body: some View {
    VStack {

      Link(label, destination: url)

      Link(destination: url) {
        Text(label)
      }

      Button(label) {
        openURL(url)
      }

      Button {
        openURL(url)
      } label: {
        Text(label)
      }
#if os(macOS)
      .buttonStyle(.link)
#endif

    }
    .padding()
  }
}

#Preview {
  LinkTest()
}

これくらいからで、どうにかなりますよね !

👉 Link | Apple Developer Documentation hatena-bookmark
👉 openURL | Apple Developer Documentation hatena-bookmark


【SwiftUI】iOS と macOS で互換したいコードの一つの解法

なるほどこうするのか。

iOS ↔ macOS と切り替えると、

ビルドで落ちて萎えるときの

一つの何かのきっかけに。

最新の SwiftUI ならシンプルです。


import SwiftUI

public extension Color {

    #if os(macOS)
    static let background = Color(NSColor.windowBackgroundColor)
    static let secondaryBackground = Color(NSColor.underPageBackgroundColor)
    static let tertiaryBackground = Color(NSColor.controlBackgroundColor)
    #else
    static let background = Color(UIColor.systemBackground)
    static let secondaryBackground = Color(UIColor.secondarySystemBackground)
    static let tertiaryBackground = Color(UIColor.tertiarySystemBackground)
    #endif
}

👉 ios - SwiftUI: Get the Dynamic Background Color (Dark Mode or Light Mode) - Stack Overflow hatena-bookmark

マルチなプラットフォーム作成時には、押さえておきたい記述です。