Z
Size: a a a
Z
Т
Z
Т
Т
Z
К
R
func OpenBlank() {url получается nil.
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)
}
let url = Bundle.main.url(forResource: "blank", withExtension: "html")
DK
func OpenBlank() {url получается nil.
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)
}
let url = Bundle.main.url(forResource: "blank", withExtension: "html")
KK
KK
@ObservedObject
var comment = PopoverModel()
AS