LrcLabel.h 456 B

1234567891011121314151617181920212223
  1. //
  2. // LrcLabel.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/12/16.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LrcLabel : UILabel
  10. /**
  11. * @brief: 当前某行歌词播放进度
  12. * @prama:progress (0-1)
  13. *
  14. * @use: 某一行歌词的进度传入进来 逐字播放
  15. *
  16. * @discussion:某一行的进度。因为要渲染歌词 从左到右
  17. *
  18. */
  19. @property (nonatomic, assign) CGFloat progress;
  20. @end