1
4

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 3 years have passed since last update.

[Swift] UIImageViewの簡単な実装

Posted at

#はじめに
UIImageViewの実装方法について書いていきます。

写真などを画面に表示するだけでなんかすごく見える気がします。

今後使用する頻度も多いと思うので、まとめてみます。

#使い方
UIImageViewを配置して、Outletとして接続します。
名前は好きなように付けてください(分かりやすく)。
スクリーンショット 2020-12-27 14.18.21.png

赤枠を選択して、青枠の中に写真やイラストをドラック&ドロップします。
スクリーンショット 2020-12-27 14.19.14.png
こんな感じで入りました。
スクリーンショット 2020-12-27 14.22.24.png
写真のNameを分かりやすいように変更します。
あとでコードで呼び出す時もこのNameで指定します。
今回はseaにしました。おそらく川でしたが笑
スクリーンショット 2020-12-27 14.25.08.png
#####コード
UIImage(named:) で先程設定した名前を入れる事で、画像が表示できます。

class ViewController: UIViewController {

    @IBOutlet var imageView: UIImageView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        imageView.image = UIImage(named: "sea")
    }
}

#####実行結果
スクリーンショット 2020-12-27 14.35.27.png

1
4
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
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?