一折买app------返利---------返利宝

CCActionSheet.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // CCActionSheet.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/25.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol CCActionSheetDelegate;
  10. @interface CCActionSheet : UIView<UITableViewDataSource,UITableViewDelegate>
  11. {
  12. UITableView *_tableView;
  13. UIView *_sheetView;
  14. UIView *_alphaView;
  15. }
  16. @property (nonatomic, weak) id<CCActionSheetDelegate> delegate;
  17. @property (nonatomic, assign) NSInteger cancelButtonIndex;
  18. @property (nonatomic, assign) NSInteger destructiveButtonIndex;
  19. @property (nonatomic, copy) NSString *title;
  20. @property (nonatomic, copy) NSString *cancelButtonTitle;
  21. @property (nonatomic, copy) NSString *destructiveButtonTitle;
  22. @property (nonatomic, strong) NSMutableArray *otherButtonTitles;
  23. @property (nonatomic, readonly) NSInteger numberOfButtons;
  24. - (CCActionSheet *)initWithTitle:(NSString *)title delegate:(id<CCActionSheetDelegate>)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSArray *)otherButtonTitles;
  25. - (void)showInView:(UIView *)view;
  26. @property UIFontWeight *asFlfu5;
  27. @property UIActivity *a2Unyb;
  28. @property UIBarButtonItem *avaIfQ2ZX4;
  29. @property UIFont *agYxW;
  30. @property UIEdgeInsets *a1hYHeWoT;
  31. @property UIView *aIJbf;
  32. @property UIView *aQfyMbeHm;
  33. @property UIMotionEffect *ajG5RSAOyK;
  34. @property UIDocument *ah6Id;
  35. @property UIInputView *ajkRAtxc8;
  36. @end
  37. @protocol CCActionSheetDelegate <NSObject>
  38. @optional
  39. - (void)actionSheet:(CCActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
  40. @property UIFontWeight *asFlfu5;
  41. @property UIActivity *a2Unyb;
  42. @property UIBarButtonItem *avaIfQ2ZX4;
  43. @property UIFont *agYxW;
  44. @property UIEdgeInsets *a1hYHeWoT;
  45. @property UIView *aIJbf;
  46. @property UIView *aQfyMbeHm;
  47. @property UIMotionEffect *ajG5RSAOyK;
  48. @property UIDocument *ah6Id;
  49. @property UIInputView *ajkRAtxc8;
  50. @end