口袋优选

KBMoreMenuView.h 520B

1234567891011121314151617181920
  1. //
  2. // KBMoreMenuView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/17.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KBMoreMenuView;
  10. @protocol YHMoreMenuViewDelegate<NSObject>
  11. - (void)morenMenu:(KBMoreMenuView *)menuView Button:(UIButton *)button clickIndex:(NSInteger)index;
  12. @end
  13. @interface KBMoreMenuView : UIView
  14. - (instancetype)initWithFrame:(CGRect)frame buttonInfoArray:(NSArray *)array;
  15. @property (nonatomic, weak) id<YHMoreMenuViewDelegate> delelgate;
  16. @end