-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAFImageRequestOperation.h
37 lines (30 loc) · 1.68 KB
/
AFImageRequestOperation.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
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, May 19, 2018 at 4:52:06 PM Eastern Daylight Time
* Operating System: Version 10.2 (Build 14C92)
* Image Source: /var/containers/Bundle/Application/7AB1B6B1-534C-4BF9-A7EB-BE2BD4C13043/Snapchat.app/Snapchat
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
#import <Snapchat/AFHTTPRequestOperation.h>
@class UIImage;
@interface AFImageRequestOperation : AFHTTPRequestOperation {
BOOL _automaticallyInflatesResponseImage;
UIImage* _responseImage;
double _imageScale;
}
@property (nonatomic,retain) UIImage * responseImage; //@synthesize responseImage=_responseImage - In the implementation block
@property (assign,nonatomic) double imageScale; //@synthesize imageScale=_imageScale - In the implementation block
@property (assign,nonatomic) BOOL automaticallyInflatesResponseImage; //@synthesize automaticallyInflatesResponseImage=_automaticallyInflatesResponseImage - In the implementation block
+(BOOL)canProcessRequest:(id)arg1 ;
+(id)acceptableContentTypes;
+(id)imageRequestOperationWithRequest:(id)arg1 imageProcessingBlock:(/*^block*/id)arg2 success:(/*^block*/id)arg3 failure:(/*^block*/id)arg4 ;
+(id)imageRequestOperationWithRequest:(id)arg1 success:(/*^block*/id)arg2 ;
-(void)setCompletionBlockWithSuccess:(/*^block*/id)arg1 failure:(/*^block*/id)arg2 ;
-(void)setAutomaticallyInflatesResponseImage:(BOOL)arg1 ;
-(BOOL)automaticallyInflatesResponseImage;
-(void)setResponseImage:(UIImage *)arg1 ;
-(UIImage *)responseImage;
-(id)initWithRequest:(id)arg1 ;
-(void)setImageScale:(double)arg1 ;
-(double)imageScale;
@end