eXe-SCORM 生成的 html 文件必须是透明的才能显示背景 UIIMage 视图

发布于 2024-09-06 07:28:36 字数 159 浏览 2 评论 0原文

嗨...我是 iPhone 编程新手。有人可以帮我吗?

我有一个由 eXe 工具生成的 html。我需要在以编程方式创建的 UIImageView 上显示它。所以 html 必须是透明的,然后图像看起来像背景。

是否有可能使该 html 透明..?

感谢你

Hii....i am new to iPhone programming..Can anybody help me out please

i have an html which is generated by eXe tool.I need to show it on an UIImageView,created programmatically. so the html has to be transparent then the image looks like backround.

is it possible to make that html as transparent..?

Thank u

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尹雨沫 2024-09-13 07:28:36
NSString *path = [[NSBundle mainBundle]  pathForResource:@"filename"  ofType:@"html"];

    NSFileHandle *readHandle = [NSFileHandle   fileHandleForReadingAtPath:path];



    NSString *htmlString = [[NSString alloc] initWithData:

                            [readHandle readDataToEndOfFile]   encoding:NSUTF8StringEncoding];



    webView.opaque = NO;

    webView.backgroundColor = [UIColor clearColor];

    [self.webView loadHTMLString:htmlString baseURL:nil];

    [htmlString release];


This code helped me

Thank u all...
NSString *path = [[NSBundle mainBundle]  pathForResource:@"filename"  ofType:@"html"];

    NSFileHandle *readHandle = [NSFileHandle   fileHandleForReadingAtPath:path];



    NSString *htmlString = [[NSString alloc] initWithData:

                            [readHandle readDataToEndOfFile]   encoding:NSUTF8StringEncoding];



    webView.opaque = NO;

    webView.backgroundColor = [UIColor clearColor];

    [self.webView loadHTMLString:htmlString baseURL:nil];

    [htmlString release];


This code helped me

Thank u all...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文