UIImageViewExtensions.swift 249 B

123456789101112131415
  1. //
  2. // Avatar.swift
  3. // DesignKit
  4. //
  5. // Created by Jake Lin on 20/10/20.
  6. //
  7. import UIKit
  8. public extension UIImageView {
  9. func asAvatar(cornerRadius: CGFloat = 4) {
  10. clipsToBounds = true
  11. layer.cornerRadius = cornerRadius
  12. }
  13. }