123456789101112131415161718192021 |
- //
- // ShowBtn.h
- // smartRhino
- //
- // Created by niuzhen on 2020/2/26.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ShowBtn : UIButton
- @property (nonatomic, copy) NSString * title;
- - (void)setLabelTitle:(NSString *)title;
- - (void)show;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|