aeline
2020-06-08 2e83b7adc1bdb0f0b54a87b97a725099729a4ab5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  GeneralWebController.h
//  MIduo
//
//  Created by 重庆迈尖科技有限公司 on 2019/9/28.
//  Copyright © 2019 yeshi. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
typedef void(^shonpingShareBack)(void);
 
@protocol ShonpingShareViewControllerDelegate <NSObject>
- (void)noticeRewardCouponsViewBack;
@end
 
@interface ShonpingShareViewController : BaseViewController
 
@property (nonatomic) shonpingShareBack shonpingShareBack;
 
@property (nonatomic, assign) BOOL isInterceptUrl;
/// 请求链接
@property (nonatomic, strong) NSString *urlString;
/// 表示单曲界面是否展示粘贴板推荐的view (默认为true,)
@property (nonatomic, assign) BOOL clipboard;
 
@property (nonatomic, copy) NSString *navaTitle;
 
@property (nonatomic, nullable, copy) NSString *from;
 
@property (nonatomic, weak) id<ShonpingShareViewControllerDelegate> shonpingSharedelegate;
 
@end
 
NS_ASSUME_NONNULL_END