UIView+Category.h 338 B

12345678910111213141516171819202122
  1. //
  2. // UIView+Category.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/2.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UGLabel.h"
  10. #import "YOUPAIGradualButton.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface UIView (Category)
  13. // 设置圆角
  14. - (void)ms_radius:(CGFloat)radius;
  15. @end
  16. NS_ASSUME_NONNULL_END