You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
478 B
Objective-C
27 lines
478 B
Objective-C
//
|
|
// NetWatcher.h
|
|
// TXLiteAVDemo
|
|
//
|
|
// Created by annidyfeng on 2018/7/31.
|
|
// Copyright © 2018年 Tencent. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "SuperPlayerModel.h"
|
|
|
|
@interface NetWatcher : NSObject
|
|
|
|
@property (copy) void (^notifyTipsBlock)(NSString *);
|
|
|
|
@property (nonatomic) SuperPlayerModel *playerModel;
|
|
|
|
- (void)startWatch;
|
|
- (void)stopWatch;
|
|
|
|
- (void)loadingEvent;
|
|
- (void)loadingEndEvent;
|
|
|
|
@property NSString *adviseDefinition;
|
|
|
|
@end
|