LoginSignup
0
1

More than 5 years have passed since last update.

Twitterのプロフィールアイコンのような丸いUIImageViewを作る

Posted at

やりたいこと

  • TwitterのプロフィールアイコンのようなUIImageViewを作りたい
  • 👇こんなやつ

IMG_6D23528AFE81-1.jpg

環境

  • Swift4
  • Xcode9.4

コード

import UIKit

class CircleImageView: UIImageView {

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        commonInit()
    }

    private func commonInit() {
        layer.cornerRadius = layer.frame.width / 2
        clipsToBounds = true
    }
}
  • 画像の挿入方法はUIImageViewを扱うのと全く同じです。
0
1
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
0
1