JXActionSheetVC.h 680 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // JXActionSheetVC.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2018/9/3.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXActionSheetVC;
  10. @protocol JXActionSheetVCDelegate <NSObject>
  11. /**
  12. 控件点击事件index从 0 开始,从下到上
  13. */
  14. - (void)actionSheet:(JXActionSheetVC *)actionSheet didButtonWithIndex:(NSInteger)index;
  15. @end
  16. @interface JXActionSheetVC : UIViewController
  17. @property (nonatomic, assign) NSInteger tag;
  18. @property (nonatomic, strong) UIColor *backGroundColor;
  19. @property (nonatomic, weak) id<JXActionSheetVCDelegate>delegate;
  20. - (instancetype)initWithImages:(NSArray *)images names:(NSArray *)names;
  21. @end