13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【SwiftUI】アプリ内にライセンスを表示する

Posted at

はじめに

ライセンス表記用のライブラリと言えば、LicensePlistですね
しかし、LicensePlistは設定アプリのアプリ項目にライセンスが追加されます。
これではユーザーの目にはなかなか触れることはありません。

今回はアプリ内にライセンスを表示するライブラリを紹介します。

インストール

① 「File」を選択します
② 「Add Packages...」を選択します
スクリーンショット 2023-04-22 21.18.47.png

https://github.com/cybozu/LicenseListを貼り付けます
④ 「Dependency Rule」を設定します
⑤ 「Add Package」を選択します
スクリーンショット 2023-04-22 21.37.14.png

⑥ 「LicenseList」にチェックをいれます
⑦ 「Add Package」を選択します
スクリーンショット 2023-04-22 21.23.59.png

プラグインの設定

① プロジェクトを選択します
② ターゲットを選択します
③ 「Build Phases」を選択します
④ 「+」を選択します
スクリーンショット 2023-04-22 21.27.15.png

⑤ 「PrepareLicenseList」を選択します
⑥ 「Add」を選択します
スクリーンショット 2023-04-22 21.30.16.png

使い方

一般的な使い方(UIは固定)

READMEのUsageを見てください

UIのカスタマイズ

ContentView
import SwiftUI
import LicenseList

struct ContentView: View {
    var body: some View {
        List(Library.libraries, id: \.name) { library in
            Text(library.name)
        }
    }
}

おわり

色んなアプリのライセンス欄を眺めるの結構好きです

13
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?