//
|
// PBDocShareView.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/10/30.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBDocShareView : UIView
|
@property (nonatomic, assign) NSInteger visualViewHeight;
|
@property (nonatomic, strong) UIViewController *viewController;
|
@property (nonatomic, copy) NSString *title;
|
@property (nonatomic, copy) NSString *desc;
|
@property (nonatomic, copy) NSString *url;
|
@property (nonatomic, strong) UIImage *image;
|
- (void)show;
|
@end
|
|
NS_ASSUME_NONNULL_END
|