// // CustomButton.h // HD wallpaper // #import NS_ASSUME_NONNULL_BEGIN @interface CustomButton : UIButton @property (nonatomic, assign) CGFloat cornerRadius; @property (nonatomic, assign) CGFloat borderWidth; @property (nonatomic, strong) UIColor *borderColor; @property (nonatomic, strong) UIColor *shadowColor; @property (nonatomic, assign) CGFloat shadowRadius; @property (nonatomic, assign) CGFloat shadowOpacity; @property (nonatomic, assign) CGSize shadowOffset; - (void)setImageAboveTitleWithSpacing:(CGFloat)spacing; @end NS_ASSUME_NONNULL_END