【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

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



【Swift】よく使いそうな String の format

プログラミング言語によって違うのよ、これが。

Swift の String()。


👉 init(format:_:) | Apple Developer Documentation hatena-bookmark

よく使われてるやつ。GitHub 調べ。


[

  String(format: "%02x", 255),
  // ff

  String(format: "%02X", 170),
  // AA

  String(format: "%02d", 1),
  // 01

  String(format: "% 5d", 2),
  //     2

  String(format: "%.2f", 1.2),
  // 1.20

  String(format: "%.2f", 1.204),
  // 1.20

  String(format: "%.2f", 1.205),
  // 1.21

  String(format: "%.0f", 1.23),
  // 1

  String(format: "%f", 3.12),
  // 3.120000

  String(format: "%+.2f", -123.5),
  // -123.50

  String(format: "%p", 3),
  // 0x3

  String(format: "%@", "x"),
  // x

  String(format: "%2$@ %1$@", "world", "Hello")
  // Hello world

].forEach {
  print($0)
}

知っておくだけで便利です。

👉 String Format Specifiers hatena-bookmark
👉 String Format Specifiers hatena-bookmark
👉 What are the supported Swift String format specifiers? - Stack Overflow hatena-bookmark