iPhone开发之webview 拖动和显示本地图片的几组代码
NSString *file = [[NSBundle mainBundle] pathForResource:@”7,0″ ofType:@”png”];
NSString *url = [NSString stringWithFormat:@"
<html>
<head>
<script type=\"text/javascript\">document.ontouchmove = function(e){ e.preventDefault();} </script>
</head>
<style>a,a:link,a:visited,a:hover,a:active {text-decoration:none;color:blue;}</style>
<body>
<a href='http://www.minroad.com/'>linklinklink</a>
<img src='file://%@'>
</body>
</html>",file];
[webview loadHTMLString:url baseURL:nil];
作者:码农豆豆 微信公众号: 出处:http://www.cnblogs.com/fly_binbin/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 如果文中有什么错误,欢迎指出。以免更多的人被误导。 |