UIButton+Layout.h 290 B

12345678910111213141516171819
  1. //
  2. // UIButton+Layout.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIButton (Layout)
  10. - (void)centerVerticallyWithPadding:(float)padding;
  11. - (void)centerVertically;
  12. @end
  13. NS_ASSUME_NONNULL_END