From d08f6f9886c8845d4bc21c5cbd0be61bdf6ef98f Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Mon, 13 Jan 2020 16:11:07 +0800 Subject: [PATCH] 1.4.0 --- frameworks/AFNetworking.framework/Headers/AFNetworking.h | 57 +++++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 39 insertions(+), 18 deletions(-) diff --git a/frameworks/AFNetworking.framework/Headers/AFNetworking.h b/frameworks/AFNetworking.framework/Headers/AFNetworking.h old mode 100755 new mode 100644 index 6d442bb..c6bbeac --- a/frameworks/AFNetworking.framework/Headers/AFNetworking.h +++ b/frameworks/AFNetworking.framework/Headers/AFNetworking.h @@ -1,17 +1,16 @@ // AFNetworking.h -// -// Copyright (c) 2013 AFNetworking (http://afnetworking.com/) -// +// Copyright (c) 2011–2016 Alamofire Software Foundation ( http://alamofire.org/ ) +// 3.2.1 // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: -// +// // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. -// +// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -21,26 +20,48 @@ // THE SOFTWARE. #import <Foundation/Foundation.h> + +//! Project version number for AFNetworking. +FOUNDATION_EXPORT double AFNetworkingVersionNumber; + +//! Project version string for AFNetworking. +FOUNDATION_EXPORT const unsigned char AFNetworkingVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import <AFNetworking/PublicHeader.h> + #import <Availability.h> +#import <TargetConditionals.h> #ifndef _AFNETWORKING_ - #define _AFNETWORKING_ +#define _AFNETWORKING_ - #import "AFURLRequestSerialization.h" - #import "AFURLResponseSerialization.h" - #import "AFSecurityPolicy.h" +#import <AFNetworking/AFURLRequestSerialization.h> +#import <AFNetworking/AFURLResponseSerialization.h> +#import <AFNetworking/AFSecurityPolicy.h> +#import <AFNetworking/AFCompatibilityMacros.h> + #if !TARGET_OS_WATCH - #import "AFNetworkReachabilityManager.h" - #import "AFURLConnectionOperation.h" - #import "AFHTTPRequestOperation.h" - #import "AFHTTPRequestOperationManager.h" +#import <AFNetworking/AFNetworkReachabilityManager.h> #endif -#if ( ( defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || \ - ( defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 ) || \ - TARGET_OS_WATCH ) - #import "AFURLSessionManager.h" - #import "AFHTTPSessionManager.h" +#import <AFNetworking/AFURLSessionManager.h> +#import <AFNetworking/AFHTTPSessionManager.h> + +#if TARGET_OS_IOS || TARGET_OS_TV +#import <AFNetworking/AFAutoPurgingImageCache.h> +#import <AFNetworking/AFImageDownloader.h> +#import <AFNetworking/UIActivityIndicatorView+AFNetworking.h> +#import <AFNetworking/UIButton+AFNetworking.h> +#import <AFNetworking/UIImage+AFNetworking.h> +#import <AFNetworking/UIImageView+AFNetworking.h> +#import <AFNetworking/UIProgressView+AFNetworking.h> #endif +#if TARGET_OS_IOS +#import <AFNetworking/AFNetworkActivityIndicatorManager.h> +#import <AFNetworking/UIRefreshControl+AFNetworking.h> +#import <AFNetworking/UIWebView+AFNetworking.h> +#endif + + #endif /* _AFNETWORKING_ */ -- Gitblit v1.8.0