暂无描述

ToastTextView.swift 624B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ToastTextView.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by ffib on 2019/1/18.
  6. // Copyright © 2019 yb. All rights reserved.
  7. //
  8. import Foundation
  9. final class ToastTextView: UILabel {
  10. override init(frame: CGRect) {
  11. super.init(frame: frame)
  12. }
  13. convenience init(text: String, option: ToastOption) {
  14. self.init(frame: CGRect.zero)
  15. self.text = text
  16. numberOfLines = 0
  17. textColor = option.tintColor
  18. font = UIFont.systemFont(ofSize: 14)
  19. }
  20. required init?(coder aDecoder: NSCoder) {
  21. fatalError("init(coder:) has not been implemented")
  22. }
  23. }