12345678910111213141516171819 |
- //
- // ASBaseView.h
- // AIPlayRingtones
- //
- // Created by mini on 2025/5/27.
- //
- #import <UIKit/UIKit.h>
- #import <Masonry.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASBaseView : UIView
- @property (nonatomic, strong) UIView *contentView;
- - (void)creatUI;
- - (void)dealThings;
- @end
- NS_ASSUME_NONNULL_END
|