HEMenu.h 875 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // HEMenuC.h
  3. // YHMenu
  4. //
  5. // Created by Boris on 2018/5/10.
  6. // Copyright © 2018年 Boris. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. @interface HEMenu : NSObject
  11. + (HEMenu *)shareManager;
  12. // item.count != imgSource.count 或 imgSource.count == 0 时, 不显示图片, 只显示文本
  13. /*
  14. * width menu的宽
  15. * height menu的最高高度
  16. * point 顶点的point
  17. * item 要显示的文本数组
  18. * imgSource 要显示的icon数组
  19. * action 点击方法回调
  20. */
  21. - (void) showPopMenuSelecteWithFrameWidth:(CGFloat)width
  22. height:(CGFloat)height
  23. point:(CGPoint)point
  24. item:(NSArray *)item
  25. imgSource:(NSArray *)imgSource
  26. action:(void (^)(NSInteger index))action;
  27. @end