123456789101112131415161718192021222324 |
- //
- // LDBottomShareView.h
- // YouHuiProject
- //
- // Created by 小花 on 2019/1/2.
- // Copyright © 2019年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol BottomShareViewDelegate <NSObject>
- - (void)BottomShareViewDidSelectedIndex:(NSInteger)index;
- @end
- @interface LDBottomShareView : UIView
- @property (nonatomic, weak) id <BottomShareViewDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|