IMAudioView.swift 539 B

1234567891011121314151617181920212223242526
  1. //
  2. // IMAudioView.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2020/6/17.
  6. // Copyright © 2020 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class IMAudioView: UIView {
  10. static let IMAudioView_width: CGFloat = 92
  11. static let IMAudioView_height: CGFloat = 36
  12. @IBOutlet weak var playImageView: UIImageView!
  13. @IBOutlet weak var durationLabel: UILabel!
  14. override func awakeFromNib() { }
  15. func setDuration(duration: String) {
  16. self.durationLabel.text = "\(duration)\""
  17. }
  18. }