swiftui macOS实现加载本地html文件

swift 复制代码
import SwiftUI
import WebKit

struct ContentView: View {
    var body: some View {
        VStack {
            Text("测试")
            
            HTMLView(htmlFileName: "localfile") // 假设你的本地 HTML 文件名为 index.html
                        .frame(minWidth: 100, minHeight: 100) // 设置 HTMLView 的最小尺寸
        }
        .frame(minWidth: 200, minHeight: 200) // 设置 ContentView 的最小尺寸
    }
}

struct HTMLView: NSViewRepresentable {
    let htmlFileName: String

    func makeNSView(context: Context) -> WKWebView {
        let webView = WKWebView()
        return webView
    }

    func updateNSView(_ nsView: WKWebView, context: Context) {
        if let htmlPath = Bundle.main.url(forResource: htmlFileName, withExtension: "html") {
            let request = URLRequest(url: htmlPath)
            nsView.load(request)
        }
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

#Preview {
    ContentView()
}

如果空白

那就是权限没有开

相关推荐
木木黄木木11 分钟前
HTML5图片裁剪工具实现详解
前端·html·html5
FanetheDivine2 小时前
正确使用flex-1
css·html
木木黄木木5 小时前
HTML5重力球动画实现详解
前端·html·html5
hello_simon8 小时前
在线小白工具,PPT转PDF支持多种热门工具,支持批量转换,操作简单,高效适合各种需求
pdf·html·powerpoint·excel·pdf转html·excel转pdf格式
zhougl9969 小时前
html处理Base文件流
linux·前端·html
木木黄木木13 小时前
html5炫酷图片悬停效果实现详解
前端·html·html5
计算机毕设定制辅导-无忧学长19 小时前
HTML 性能优化之路:学习进度与优化策略(二)
学习·性能优化·html
博观而约取19 小时前
Linux 和 macOS 终端中常见的快捷键操作
linux·运维·macos
小旋风0123419 小时前
封装可拖动弹窗(vue jquery引入到html的版本)
vue.js·html·jquery
Alger_Hamlet21 小时前
Photoshop 2025 Mac中文 Ps图像编辑软件
macos·ui·photoshop