19 lines
225 B
Objective-C
19 lines
225 B
Objective-C
//
|
|
// PickerButton.h
|
|
// BabyAlbum
|
|
//
|
|
// Created by mambaxie on 2021/7/3.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PickerButton : UIButton
|
|
|
|
+ (instancetype)pickerButton;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|