MONormalRightAlertView.h 691 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MONormalRightAlertView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/6/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MONormalRightAlertView : UIView
  10. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *menuViewHeight;
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *menuViewWidth;
  12. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *menuVIewTop;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *menuViewRight;
  14. @property (readwrite, nonatomic, weak) id target;
  15. @property (nonatomic, strong) NSArray *dataArr;
  16. + (instancetype)moNormalRightAlertView;
  17. - (void)showVipMenuView;
  18. - (void)dismissVipMenuView;
  19. @end
  20. NS_ASSUME_NONNULL_END