Skip to content
Snippets Groups Projects
MyButton1.h 342 B
//
//  MyButton1.h
//  CommonSdk
//
//  Created by Howard on 2021/11/11.
//

#import <UIKit/UIKit.h>

@class MyButton1;
NS_ASSUME_NONNULL_BEGIN
typedef void(^ButtonClickBlock)(MyButton1 *sender);

@interface MyButton1 : UIView
+ (void)show:(UIView *)superView text:(NSString *)text block:(ButtonClickBlock) block;
@end

NS_ASSUME_NONNULL_END