TCBGMListViewController.h 443 B

123456789101112131415161718
  1. //
  2. // TCBGMListViewController.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by linkzhzhu on 2017/12/8.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol TCBGMControllerListener <NSObject>
  10. -(void) onBGMControllerPlay:(NSString*) path;
  11. @end
  12. @interface TCBGMListViewController : UITableViewController
  13. -(void)setBGMControllerListener:(id<TCBGMControllerListener>) listener;
  14. -(void)loadBGMList;
  15. @end