No Description

FFAlertLabel.swift 570B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FFAlertLabel.swift
  3. // FFAlert
  4. //
  5. // Created by FFIB on 2017/11/14.
  6. // Copyright © 2017年 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. class FFAlertLabel: UILabel {
  10. override var attributedText: NSAttributedString? {
  11. didSet {
  12. sizeToFit()
  13. }
  14. }
  15. init() {
  16. super.init(frame: CGRect.zero)
  17. self.textAlignment = .center
  18. self.numberOfLines = 0
  19. self.translatesAutoresizingMaskIntoConstraints = false
  20. }
  21. required init?(coder aDecoder: NSCoder) {
  22. super.init(coder: aDecoder)
  23. }
  24. }