Z
Size: a a a
Z
Т
Z
Т
Т
Z
К
R
func OpenBlank() {
let myProjectBundle: Bundle = Bundle.main;
let filePath: String = myProjectBundle.path(forResource: "blank", ofType: "html")!
let url = URL(string: filePath)
let urlRequest:URLRequest = URLRequest(url: url!);
webView.load(urlRequest)
}
url получается nil.let url = Bundle.main.url(forResource: "blank", withExtension: "html")
DK
func OpenBlank() {
let myProjectBundle: Bundle = Bundle.main;
let filePath: String = myProjectBundle.path(forResource: "blank", ofType: "html")!
let url = URL(string: filePath)
let urlRequest:URLRequest = URLRequest(url: url!);
webView.load(urlRequest)
}
url получается nil.let url = Bundle.main.url(forResource: "blank", withExtension: "html")
KK

KK
@ObservedObject var comment = PopoverModel()AS
