//
// IPUURLRequestManager.h
// IPUMobile
//
// Created by 秋林 on 2019/1/15.
// Copyright © 2019 Asiainfo. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/*
在AppDelegate中覆盖父类方法 ‘- (NSDictionary *)setURLRequestHeader’ 即可
*/
@protocol IPUURLRequestDelegate <NSObject>
- (NSDictionary *)setURLRequestHeader;
@end
@interface IPUURLRequestManager : NSObject
+ (void)setURLRequestDelegate:(id <IPUURLRequestDelegate>)delegate;
+ (void)setupRequestHeader:(NSMutableURLRequest *)request;
@end
NS_ASSUME_NONNULL_END
|