3
2

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.

[Swift]SwiftMessagesで色を変更する

Last updated at Posted at 2022-02-08

はじめに

Qiita初投稿です。

SwiftMessagesを利用して、ポップアップを表示しようとしたときに、背景色の変え方で少し躓いたのでまとめます。

公式ドキュメント

初期状態

config.presentationStyle = .center

で中央に表示しています。他の色などはいじっていません。

画面全体の色

config.dimMode = .color(color: .systemRed, interactive: true)

ポップアップの周りの色

view.backgroundColor = .systemRed

ポップアップ自体の色

view.backgroundView.backgroundColor = .systemRed

おまけ

デフォルトアイコンの色

view.iconImageView?.tintColor = .systemRed
デフォルトアイコンを利用するには
view.configureContent(title: "title", body: "body")

のようにiconTextを消去しましょう。

titleの色

view.titleLabel?.textColor = .systemRed
## bodyの色 ```Swift view.bodyLabel?.textColor = .systemRed ```

終わりに

間違いなどありましたらご指摘お願いします。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?