DownloadViewController.h 326 B

12345678910111213141516171819
  1. //
  2. // DownloadViewController.h
  3. // FunSDKDemo
  4. //
  5. // Created by XM on 2018/11/15.
  6. // Copyright © 2018年 XM. All rights reserved.
  7. //
  8. /**
  9. *录像下载
  10. *
  11. *****/
  12. #import <UIKit/UIKit.h>
  13. #import "RecordInfo.h"
  14. @interface DownloadViewController : UIViewController
  15. - (void)startDownloadRecord:(RecordInfo*)recordInfo;
  16. @end