DFPlayerLyricsTableview.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // DFPlayerLyricsTableview.h
  3. // DFPlayer
  4. //
  5. // Created by ihoudf on 2017/8/16.
  6. // Copyright © 2017年 ihoudf. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class DFPlayerLyricsTableview;
  10. @protocol DFPlayerLyricsTableviewDelegate <NSObject>
  11. @optional
  12. - (void)df_lyricsTableview:(DFPlayerLyricsTableview *)lyricsTableview
  13. onPlayingLyrics:(NSString *)onPlayingLyrics;
  14. @end
  15. @interface DFPlayerLyricsTableview : UITableView
  16. @property (nonatomic, weak) id<DFPlayerLyricsTableviewDelegate> lyricsDelegate;
  17. @property (nonatomic, assign) BOOL stopUpdate;
  18. @property (nonatomic, assign) CGFloat cellRowHeight;
  19. @property (nonatomic, strong) UIColor *cellBackgroundColor;
  20. @property (nonatomic, strong) UIColor *currentLineLrcForegroundTextColor;
  21. @property (nonatomic, strong) UIColor *currentLineLrcBackgroundTextColor;
  22. @property (nonatomic, strong) UIColor *otherLineLrcBackgroundTextColor;
  23. @property (nonatomic, strong) UIFont *currentLineLrcFont;
  24. @property (nonatomic, strong) UIFont *otherLineLrcFont;
  25. @property (nonatomic, strong) UIView *lrcTableViewSuperview;
  26. @end