1234567891011121314151617181920212223 |
- //
- // NYFloatingSuggestView.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/30.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYFloatingSuggestView : UIView<RQReactiveViewProtocol>
- @property (weak, nonatomic) IBOutlet UIButton *close_button;
- @property (weak, nonatomic) IBOutlet UIButton *icon_button;
- + (instancetype)floatingSuggestView;
- @end
- NS_ASSUME_NONNULL_END
|