lipengwei
2020-05-06 23bcfe7b0bdaff043c54eaa841178e047c540625
commit | author | age
6e1425 1 // AFNetworking.h
633752 2 // Copyright (c) 2011–2016 Alamofire Software Foundation ( http://alamofire.org/ )
L 3 // 3.2.1
6e1425 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
H 5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
633752 10 //
6e1425 11 // The above copyright notice and this permission notice shall be included in
H 12 // all copies or substantial portions of the Software.
633752 13 //
6e1425 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
H 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE.
21
22 #import <Foundation/Foundation.h>
633752 23
L 24 //! Project version number for AFNetworking.
25 FOUNDATION_EXPORT double AFNetworkingVersionNumber;
26
27 //! Project version string for AFNetworking.
28 FOUNDATION_EXPORT const unsigned char AFNetworkingVersionString[];
29
30 // In this header, you should import all the public headers of your framework using statements like #import <AFNetworking/PublicHeader.h>
31
6e1425 32 #import <Availability.h>
633752 33 #import <TargetConditionals.h>
6e1425 34
H 35 #ifndef _AFNETWORKING_
633752 36 #define _AFNETWORKING_
6e1425 37
633752 38 #import <AFNetworking/AFURLRequestSerialization.h>
L 39 #import <AFNetworking/AFURLResponseSerialization.h>
40 #import <AFNetworking/AFSecurityPolicy.h>
41 #import <AFNetworking/AFCompatibilityMacros.h>
42
6e1425 43 #if !TARGET_OS_WATCH
633752 44 #import <AFNetworking/AFNetworkReachabilityManager.h>
6e1425 45 #endif
H 46
633752 47 #import <AFNetworking/AFURLSessionManager.h>
L 48 #import <AFNetworking/AFHTTPSessionManager.h>
49
50 #if TARGET_OS_IOS || TARGET_OS_TV
51 #import <AFNetworking/AFAutoPurgingImageCache.h>
52 #import <AFNetworking/AFImageDownloader.h>
53 #import <AFNetworking/UIActivityIndicatorView+AFNetworking.h>
54 #import <AFNetworking/UIButton+AFNetworking.h>
55 #import <AFNetworking/UIImage+AFNetworking.h>
56 #import <AFNetworking/UIImageView+AFNetworking.h>
57 #import <AFNetworking/UIProgressView+AFNetworking.h>
6e1425 58 #endif
H 59
633752 60 #if TARGET_OS_IOS
L 61 #import <AFNetworking/AFNetworkActivityIndicatorManager.h>
62 #import <AFNetworking/UIRefreshControl+AFNetworking.h>
63 #import <AFNetworking/UIWebView+AFNetworking.h>
64 #endif
65
66
6e1425 67 #endif /* _AFNETWORKING_ */