Post

UIKit - Symbol Image 사이즈 설정하기

예시

1
2
3
4
5
6
7
8
private let contentTextDisplayImageView: UIImageView = {
  let imageView = UIImageView()
          
  let configuration = UIImage.SymbolConfiguration(pointSize: 17)
  imageView.image = UIImage(systemName: "book.pages", withConfiguration: configuration)

  return imageView
}()
This post is licensed under CC BY 4.0 by the author.