gpt4 book ai didi

iphone - 如何在 iPhone 的 HTML 页面中设置背景图片

转载 作者:行者123 更新时间:2023-12-03 20:59:34 25 4
gpt4 key购买 nike

提前感谢您给我回复......我是 iPhone 开发的初学者。

过去 2 天我尝试在 iphone 中的 UIWebView 中设置背景图像。但我不能。因为我不知道如何从项目目录中获取图像(正确的路径)及其正确的语法。

最佳答案

使用此代码加载带有背景图像的 html。

NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"bgfull.png"];
NSURL *url = [[NSURL alloc] initFileURLWithPath:path isDirectory:NO];

NSString *size = [@"100%25" stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];





NSString *contentHtml = [NSString stringWithFormat:@"<html>\
<head>\
<style type=\"text/css\">\
html {height:%@;}\
body {height:%@; margin:0; padding:0; color:white; font-size:40px;}\
#bg {position:fixed; top:0; left:0; width:%@; height:%@;}\
#content {position:relative; z-index:1;}\
</style>\
</head>\
<body>\
<div id=\"bg\"><img src=\"%@\" width=\"%@\" height=\"%@\"></div>\
<div id=\"content\"><font color=\"#DAF899\" size=\"+4\"><b>%@</b></font><p>%@</p></div>\
</body>\
</html>", size, size, size, size, url, size, size, self.navigationItem.title, content];






[webView loadHTMLString:contentHtml baseURL:nil];

希望这有帮助。

关于iphone - 如何在 iPhone 的 HTML 页面中设置背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2072076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com