123456789101112131415161718192021222324 |
- //
- // YOUPAIFSVideoChoseVC.h
- // FoxSister
- //
- // Created by leo on 2019/11/19.
- // Copyright © 2019 fox. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZYBaseWindow.h"
- typedef void(^avatarBlock)(void);
- NS_ASSUME_NONNULL_BEGIN
- @protocol FSVideoChoseDelegate <NSObject>
- -(void)youpaifvideoChose:(NSInteger)videoType userId:(NSString *)userId;
- @end
- @interface YOUPAIFSVideoChoseVC : ZYBaseWindow
- @property(nonatomic,strong)NSString *userId;
- @property(nonatomic,assign)NSInteger videoType;
- //@property(nonatomic,assign)CGFloat screenWidth,screenHeight;
- @property(nonatomic,weak)id<FSVideoChoseDelegate>delegate;
- @property(nonatomic,copy)avatarBlock avblock;
- @end
- NS_ASSUME_NONNULL_END
|