CNLiveNewsDetailsView.h
553 Bytes
//
// CNLiveNewsDetailsView.h
// CNLiveScioLive
//
// Created by Xiaowen Zhang on 2018/9/21.
// Copyright © 2018年 CNLive. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef void(^NewsDetailsViewClickedBlock)(NSInteger tag);
@interface CNLiveNewsDetailsView : UIView
@property (nonatomic, strong) NSArray *pics;
@property (nonatomic, copy) NewsDetailsViewClickedBlock block;
@property (nonatomic, strong) UIButton *btn;
@property (nonatomic, copy) NSDictionary *dic;
- (instancetype)initWithFrame:(CGRect)frame pics:(NSArray *)pics;
@end