QNURLProtocol.h 435 B

12345678910111213141516171819202122232425262728
  1. //
  2. // QNURLProtocol.h
  3. // AppTest
  4. //
  5. // Created by yangsen on 2020/4/7.
  6. // Copyright © 2020 com.qiniu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface QNURLProtocol : NSURLProtocol
  11. + (void)registerProtocol;
  12. + (void)unregisterProtocol;
  13. @end
  14. @interface NSURLSessionConfiguration(QNURLProtocol)
  15. + (NSURLSessionConfiguration *)qn_sessionConfiguration;
  16. @end
  17. NS_ASSUME_NONNULL_END