我在 UiWebViewController 中打开了一个带有 cordova 的 html 页面。在 Uiwebviewcontroller 中加载 index.html 时,我们可以嗅探来自 index.html 的请求吗?
例如,我在 UiWebviewcontroller 中打开了以下 html:
<html>
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
<script src="app.js"></script>
</head>
<body>
<img src="img.jpg"/>
</body>
</html>
我可以嗅探和修改 Uiwebviewcontroller 中请求的 url,即。使用 Objective-C 将 img.jpg、theme.css、app.js 转换为 content/img.jpg、css/theme.css、js/app.js 之类的内容。