123456789101112131415161718 |
- //
- // PaddingLabel.h
- // LenzCameraNativeModuleForRN
- //
- // Created by 王昭威 on 2023/1/31.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PaddingLabel : UILabel
- @property (nonatomic, assign) UIEdgeInsets padding;
- @end
- NS_ASSUME_NONNULL_END
|