-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMFArrowControlsView.h
38 lines (31 loc) · 1.41 KB
/
MFArrowControlsView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, June 5, 2018 at 10:35:58 PM China Standard Time
* Operating System: Version 8.2 (Build 12D508)
* Image Source: /private/var/db/stash/_.8k0vmU/Applications/MobileMail.app/MobileMail
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
#import <MobileMail/MobileMail-Structs.h>
#import <UIKit/UIView.h>
@protocol MFArrowControlsViewDelegate;
@class UIButton;
@interface MFArrowControlsView : UIView {
UIButton* _upButton;
UIButton* _downButton;
BOOL _isShowingSmallIcons;
id<MFArrowControlsViewDelegate> _delegate;
}
@property (assign,nonatomic) id<MFArrowControlsViewDelegate> delegate; //@synthesize delegate=_delegate - In the implementation block
@property (nonatomic,readonly) UIButton * downButton; //@synthesize downButton=_downButton - In the implementation block
@property (nonatomic,readonly) UIButton * upButton; //@synthesize upButton=_upButton - In the implementation block
-(UIButton *)upButton;
-(void)_arrowButtonWasTapped:(id)arg1 ;
-(void)_updateImagesForControlHeight:(double)arg1 ;
-(id)initWithFrame:(CGRect)arg1 ;
-(void)dealloc;
-(void)setDelegate:(id<MFArrowControlsViewDelegate>)arg1 ;
-(id)hitTest:(CGPoint)arg1 withEvent:(id)arg2 ;
-(void)setFrame:(CGRect)arg1 ;
-(id<MFArrowControlsViewDelegate>)delegate;
-(UIButton *)downButton;
@end