1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| //
| // PBMoreFunctionView.h
| // IphoneBIMe
| //
| // Created by zjf on 2018/7/27.
| // Copyright © 2018年 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @interface PBMoreFunctionView : UIView
| @property (nonatomic, strong) NSArray *dataArr;
| @property (nonatomic, strong) NSString *title;
| @property (nonatomic, assign) NSInteger visualViewHeight;
| @property (nonatomic, copy) void(^seletedIndexBlock)(NSInteger index);
| - (void)show;
| @end
|
|