CNLiveCollectionNavigationBar.h 800 Bytes
//
//  CNLiveCollectionNavigationBar.m
//  CNLiveCollectionModule
//
//  Created by 153993236@qq.com on 11/12/2019.
//  Copyright (c) 2019 153993236@qq.com. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN
@class CNLiveCollectionNavigationBar;

@protocol CNLiveCollectionNavigationBarDelegate <NSObject>
- (void)navigationBar:(CNLiveCollectionNavigationBar *)navigationBar actionEvents:(NSString *)actionEvents;

@end

@interface CNLiveCollectionNavigationBar : UIView
@property (nonatomic, weak) id<CNLiveCollectionNavigationBarDelegate> delegate;
@property (nonatomic, strong) UIView *navView;
@property (nonatomic, strong) UIButton *left;
@property (nonatomic, strong) UILabel *title;
@property (nonatomic, strong, nullable) UIButton *right;


@end

NS_ASSUME_NONNULL_END