JXSegmentedTitleAttributeItemModel.swift 436 B

1234567891011121314151617
  1. //
  2. // JXSegmentedTitleAttributeItemModel.swift
  3. // JXSegmentedView
  4. //
  5. // Created by jiaxin on 2019/1/3.
  6. // Copyright © 2019 jiaxin. All rights reserved.
  7. //
  8. import UIKit
  9. open class JXSegmentedTitleAttributeItemModel: JXSegmentedBaseItemModel {
  10. open var attributedTitle: NSAttributedString?
  11. open var selectedAttributedTitle: NSAttributedString?
  12. open var titleNumberOfLines: Int = 0
  13. open var textWidth: CGFloat = 0
  14. }