线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

HSQMoreMenuView.h 600B

12345678910111213141516171819202122
  1. //
  2. // HSQMoreMenuView.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 HSQMoreMenuView;
  10. @protocol YHMoreMenuViewDelegate<NSObject>
  11. - (void)morenMenu:(HSQMoreMenuView *)menuView Button:(UIButton *)button clickIndex:(NSInteger)index;
  12. @end
  13. @interface HSQMoreMenuView : UIView
  14. - (instancetype)initWithFrame:(CGRect)frame buttonInfoArray:(NSArray *)array title:(NSString *)title;
  15. @property (nonatomic, weak) id<YHMoreMenuViewDelegate> delelgate;
  16. - (UIButton *)getButtonWithIndex:(NSInteger)index;
  17. @end