LoadingView.h 600 Bytes
//
//  LoadingView.h
//  CNLivePlayerSDKDemo
//
//  Created by iOS on 17/3/8.
//  Copyright © 2017年 雷浩杰. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSUInteger, LoadingViewStyle) {
    LoadingViewStyleStartLoading = 0,
    LoadingViewStyleStopLoading,
    LoadingViewStyleRetry,
};

@class LoadingView;

@protocol LoadingViewDelegate <NSObject>

- (void)loadingView:(LoadingView *)loadingViewRetryAction;

@end

@interface LoadingView : UIView

@property (nonatomic, assign) id<LoadingViewDelegate> delegate;

- (void)setLoadingViewStyle:(LoadingViewStyle)style;

@end