CNLiveCancellationView.h
556 Bytes
//
// CNLiveCancellationView.h
// CNLiveSettingModule
//
// Created by CNLive-zxw on 2019/3/21.
// Copyright © 2019年 cnlive. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class CNLiveCancellationView;
@protocol CNLiveCancellationViewDelegate <NSObject>
- (void)clickedCancellation:(CNLiveCancellationView *)view;
- (void)clickedProtocol:(CNLiveCancellationView *)view;
@end
@interface CNLiveCancellationView : UIView
@property (nonatomic, weak) id<CNLiveCancellationViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END