//
|
// 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
|