TVCReport.h 445 B

12345678910111213141516171819202122
  1. //
  2. // TVCReport.h
  3. // TXMUploader
  4. //
  5. // Created by carolsuo on 2018/3/28.
  6. // Copyright © 2018年 lynxzhang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. #import "TVCClientInner.h"
  11. @interface TVCReport : NSObject
  12. + (instancetype)shareInstance;
  13. - (void) addReportInfo:(TVCReportInfo *)info;
  14. @property (strong, nonatomic) NSMutableArray *reportCaches;
  15. @property (nonatomic, weak) NSTimer* timer;
  16. @end