BGSoundEffectCell.h 435 B

12345678910111213141516171819202122
  1. //
  2. // BGSoundEffectCell.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/11.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BGSoundEffectModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BGSoundEffectCell : UICollectionViewCell
  12. @property(nonatomic, strong) BGSoundEffectModel *model;
  13. //2020-1-2 点击播放某个音效
  14. @property(nonatomic, strong) UILabel *titleLabel;
  15. @end
  16. NS_ASSUME_NONNULL_END