| 123456789101112131415161718192021222324252627282930313233 |
- //
- // LandscapeShareView.h
- // YBVideo
- //
- // Created by ybRRR on 2023/7/12.
- // Copyright © 2023 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger,RKDownType) {
- RKDownType_Save, //普通下载
- RKDownType_Chorus, //合拍下载
- };
- typedef void (^ShareBlock)(int codeEvent,NSString *nums);
- typedef void (^ShareHideBlock)();
- @interface LandscapeShareView : UIView
- /** limitDic
- * video_status 0-不能合拍 1-能合拍
- * video_msg:不能合拍提示
- * limit_status 0-有限制 1-无限制
- */
- @property(nonatomic,strong)NSDictionary *limitDic;
- @property(nonatomic,copy)ShareBlock shareEvent;
- @property(nonatomic,copy)ShareHideBlock shareHideEvent;
- -(instancetype)initWithFrame:(CGRect)frame parameter:(NSDictionary *)parameter andlimitDic:(NSDictionary *)limDic;
- @end
|