ThirdPartyView.h 480 Bytes
//
//  ThirdPartyView.h
//  CNLiveUserSystemDemo
//
//  Created by iOS on 16/11/18.
//  Copyright © 2016年 zhulin. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol ThirdPartyViewDelegate <NSObject>

- (void)thirdPartyBtnAction:(NSString *)title;

@optional
- (void)cancelThirdView;

@end

@interface ThirdPartyView : UIView

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

- (instancetype)initWithFrame:(CGRect)frame binding:(BOOL)binding; 

@end