PopMenuButton.h 531 B

123456789101112131415161718192021222324
  1. //
  2. // PopMenuButton.h
  3. // HyPopMenuView
  4. //
  5. // Created by Hy_Mac on 16/7/8.
  6. // Copyright © 2016年 ouy.Aberi. All rights reserved.
  7. //
  8. #import "HyPopMenuView.h"
  9. #import <UIKit/UIKit.h>
  10. typedef void (^completionAnimation)( PopMenuButton * _Nonnull );
  11. @interface PopMenuButton : UIButton <CAAnimationDelegate>
  12. @property (nonatomic, nonnull, strong) PopMenuModel* model;
  13. @property (nonatomic, nonnull, strong) completionAnimation block;
  14. - (instancetype __nonnull)init;
  15. - (void)selectdAnimation;
  16. - (void)cancelAnimation;
  17. @end