• 大小: 142KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-11
  • 语言: 其他
  • 标签: Swift  

资源简介

下载,解压缩,打开YourApplication

资源截图

代码片段和文件信息

// AFHTTPSessionManager.m
// Copyright (c) 2011–2016 Alamofire Software Foundation ( http://alamofire.org/ )
//
// 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
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
// LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#import “AFHTTPSessionManager.h“

#import “AFURLRequestSerialization.h“
#import “AFURLResponseSerialization.h“

#import 
#import 
#import 

#import 
#import 
#import 
#import 
#import 

#if TARGET_OS_IOS || TARGET_OS_TV
#import 
#elif TARGET_OS_WATCH
#import 
#endif

@interface AFHTTPSessionManager ()
@property (readwrite nonatomic strong) NSURL *baseURL;
@end

@implementation AFHTTPSessionManager
@dynamic responseSerializer;

+ (instancetype)manager {
    return [[[self class] alloc] initWithbaseURL:nil];
}

- (instancetype)init {
    return [self initWithbaseURL:nil];
}

- (instancetype)initWithbaseURL:(NSURL *)url {
    return [self initWithbaseURL:url sessionConfiguration:nil];
}

- (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration {
    return [self initWithbaseURL:nil sessionConfiguration:configuration];
}

- (instancetype)initWithbaseURL:(NSURL *)url
           sessionConfiguration:(NSURLSessionConfiguration *)configuration
{
    self = [super initWithSessionConfiguration:configuration];
    if (!self) {
        return nil;
    }

    // Ensure terminal slash for baseURL path so that NSURL +URLWithString:relativeToURL: works as expected
    if ([[url path] length] > 0 && ![[url absoluteString] hasSuffix:@“/“]) {
        url = [url URLByAppendingPathComponent:@““];
    }

    self.baseURL = url;

    self.requestSerializer = [AFHTTPRequestSerializer serializer];
    self.responseSerializer = [AFJSONResponseSerializer serializer];

    return self;
}

#pragma mark -

- (void)setRequestSerializer:(AFHTTPRequestSerializer  *)requestSerializer {
    NSParameterAs

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-06-08 17:51  OCframeworkInSwift\
     文件        6148  2017-06-08 18:04  OCframeworkInSwift\.DS_Store
     目录           0  2017-06-08 18:04  __MACOSX\
     目录           0  2017-06-08 18:04  __MACOSX\OCframeworkInSwift\
     文件         120  2017-06-08 18:04  __MACOSX\OCframeworkInSwift\._.DS_Store
     目录           0  2017-06-08 17:52  OCframeworkInSwift\.git\
     文件          15  2017-06-08 17:50  OCframeworkInSwift\.git\COMMIT_EDITMSG
     文件         137  2017-06-08 17:50  OCframeworkInSwift\.git\config
     文件          73  2017-06-08 17:50  OCframeworkInSwift\.git\description
     文件          23  2017-06-08 17:50  OCframeworkInSwift\.git\HEAD
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\hooks\
     文件         177  2017-06-08 17:50  OCframeworkInSwift\.git\hooks\README.sample
     文件        2119  2017-06-08 17:52  OCframeworkInSwift\.git\index
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\info\
     文件          40  2017-06-08 17:50  OCframeworkInSwift\.git\info\exclude
     目录           0  2017-06-08 18:04  __MACOSX\OCframeworkInSwift\.git\
     目录           0  2017-06-08 18:04  __MACOSX\OCframeworkInSwift\.git\info\
     文件         171  2017-06-08 17:50  __MACOSX\OCframeworkInSwift\.git\info\._exclude
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\logs\
     文件         169  2017-06-08 17:50  OCframeworkInSwift\.git\logs\HEAD
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\logs\refs\
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\logs\refs\heads\
     文件         169  2017-06-08 17:50  OCframeworkInSwift\.git\logs\refs\heads\master
     目录           0  2017-06-08 17:52  OCframeworkInSwift\.git\objects\
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\objects\01\
     文件         527  2017-06-08 17:50  OCframeworkInSwift\.git\objects\01\5fcc08db90999f31a3551073f9f041c432f91f
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\objects\04\
     文件         937  2017-06-08 17:50  OCframeworkInSwift\.git\objects\04\6a64a6933b1339a9fa359f47f59d480e2d0af2
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\objects\1b\
     文件          92  2017-06-08 17:50  OCframeworkInSwift\.git\objects\1b\9463fa658a98b185e8c890e7fae2159260720c
     目录           0  2017-06-08 17:50  OCframeworkInSwift\.git\objects\23\
............此处省略131个文件信息

评论

共有 条评论