Guest User

Untitled

a guest
Jun 6th, 2021
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. #import <UIKit/UIView.h>
  2.  
  3. @class NFUILabel, NSLayoutConstraint, NSNumber, NSTimer, UIButton;
  4. @protocol NFUISkipIntroRecapButtonViewDelegate;
  5.  
  6. @interface NFUISkipIntroRecapButtonView : UIView
  7. {
  8. _Bool _shouldForceShow;
  9. _Bool _shouldShowButton;
  10. _Bool _controlsHidden;
  11. _Bool _shouldTimeout;
  12. _Bool _isHidden;
  13. long long _state;
  14. NSLayoutConstraint *_bottomConstraint;
  15. NSLayoutConstraint *_rightConstraint;
  16. id <NFUISkipIntroRecapButtonViewDelegate> _delegate;
  17. NFUILabel *_titleLabel;
  18. NSLayoutConstraint *_widthConstraint;
  19. NSLayoutConstraint *_titleLabelTrailingConstraint;
  20. NSTimer *_timer;
  21. NSNumber *_currentSessionId;
  22. UIButton *_tapButton;
  23. }
  24.  
  25. - (void).cxx_destruct;
  26. @property(nonatomic) _Bool isHidden; // @synthesize isHidden=_isHidden;
  27. @property(retain, nonatomic) UIButton *tapButton; // @synthesize tapButton=_tapButton;
  28. @property(retain) NSNumber *currentSessionId; // @synthesize currentSessionId=_currentSessionId;
  29. @property(nonatomic) _Bool shouldTimeout; // @synthesize shouldTimeout=_shouldTimeout;
  30. @property(retain, nonatomic) NSTimer *timer; // @synthesize timer=_timer;
  31. @property(nonatomic) __weak NSLayoutConstraint *titleLabelTrailingConstraint; // @synthesize titleLabelTrailingConstraint=_titleLabelTrailingConstraint;
  32. @property(nonatomic) __weak NSLayoutConstraint *widthConstraint; // @synthesize widthConstraint=_widthConstraint;
  33. @property(nonatomic) __weak NFUILabel *titleLabel; // @synthesize titleLabel=_titleLabel;
  34. @property(nonatomic) __weak id <NFUISkipIntroRecapButtonViewDelegate> delegate; // @synthesize delegate=_delegate;
  35. @property(nonatomic) __weak NSLayoutConstraint *rightConstraint; // @synthesize rightConstraint=_rightConstraint;
  36. @property(nonatomic) __weak NSLayoutConstraint *bottomConstraint; // @synthesize bottomConstraint=_bottomConstraint;
  37. @property(nonatomic) long long state; // @synthesize state=_state;
  38. @property(nonatomic) _Bool controlsHidden; // @synthesize controlsHidden=_controlsHidden;
  39. @property(nonatomic) _Bool shouldShowButton; // @synthesize shouldShowButton=_shouldShowButton;
  40. @property(nonatomic) _Bool shouldForceShow; // @synthesize shouldForceShow=_shouldForceShow;
  41. - (id)accessibilityLabel;
  42. - (void)configureAccessibility;
  43. - (id)localizedButtonString:(_Bool)arg1;
  44. - (void)handleTap:(id)arg1;
  45. - (void)touchesCancelled:(id)arg1 withEvent:(id)arg2;
  46. - (void)touchesEnded:(id)arg1 withEvent:(id)arg2;
  47. - (void)touchesBegan:(id)arg1 withEvent:(id)arg2;
  48. - (void)showSkipContentWithMarker:(id)arg1;
  49. - (void)showTutorialText;
  50. - (void)showRecapText;
  51. - (void)showIntroText;
  52. - (void)toggleFlags:(_Bool)arg1;
  53. - (void)hideSelf;
  54. - (void)dalloc;
  55. - (void)stopTimer;
  56. - (void)updateAccessibilityStatus;
  57. - (void)setHidden:(_Bool)arg1 animated:(_Bool)arg2 completion:(CDUnknownBlockType)arg3;
  58. - (void)setHidden:(_Bool)arg1 animated:(_Bool)arg2;
  59. - (void)toggleSkipIntroRecapPosition:(long long)arg1;
  60. - (void)initSubviews;
  61. - (id)initWithFrame:(struct CGRect)arg1;
  62. - (id)initWithCoder:(id)arg1;
  63.  
  64. @end
  65.  
Advertisement
Add Comment
Please, Sign In to add comment