我在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中请求的网址,即。使用Objective-C将img.jpg,theme.css,app.js改为content / img.jpg,css / theme.css,js / app.js。