12345678910111213141516171819 |
- //
- // UIButton+Layout.h
- // LenzCameraNativeModuleForRN
- //
- // Created by 王昭威 on 2023/1/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIButton (Layout)
- - (void)centerVerticallyWithPadding:(float)padding;
- - (void)centerVertically;
- @end
- NS_ASSUME_NONNULL_END
|