HyPopMenuViewDelegate.h 379 B

123456789101112131415161718
  1. //
  2. // HyPopMenuViewDelegate.h
  3. // HyPopMenuView
  4. //
  5. // Created by Hy_Mac on 16/7/12.
  6. // Copyright © 2016年 ouy.Aberi. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class HyPopMenuView, PopMenuModel, PopMenuButton;
  10. @protocol HyPopMenuViewDelegate <NSObject>
  11. - (void)popMenuView:(HyPopMenuView*)popMenuView didSelectItemAtIndex:(NSUInteger)index;
  12. //....
  13. @end