ASBaseView.h 298 B

12345678910111213141516171819
  1. //
  2. // ASBaseView.h
  3. // AIPlayRingtones
  4. //
  5. // Created by mini on 2025/5/27.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <Masonry.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASBaseView : UIView
  11. @property (nonatomic, strong) UIView *contentView;
  12. - (void)creatUI;
  13. - (void)dealThings;
  14. @end
  15. NS_ASSUME_NONNULL_END