style: image path

This commit is contained in:
杭城小刘
2020-05-04 02:52:47 +08:00
parent 8dbcff87ed
commit 966910d38d
4 changed files with 17 additions and 17 deletions

View File

@@ -6,7 +6,7 @@
> An NSURLProtocol object handles the loading of protocol-specific URL data. The NSURLProtocol class itself is an abstract class that provides the infrastructure for processing URLs with a specific URL scheme. You create subclasses for any custom protocols or URL schemes that your app supports.
![URL Loading System](./../assets/2020-04-18-URL-loading-system.png)
![URL Loading System](https://raw.githubusercontent.com/FantasticLBP/knowledge-kit/master/assets//2020-04-18-URL-loading-system.png)
NSURLProtocol 是 Foundation 框架中 URL Loading System 的一部分。它可以让开发者可以在不修改应用内原始请求代码的情况下,去改变 URL 加载的全部细节。换句话说NSURLProtocol 是一个被 Apple 默许的中间人攻击。