我在 NSTextField 中提供 URL,并通过点击操作按钮将其加载到 Web 视图中。
-(IBAction)showPage:(id)sender{
[[webview mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString.stringValue]]];
}
每次在运行应用程序时,我都需要提供 URL。
有没有办法将此 URL 保存在某处,例如包内容(资源),每当我运行我的应用程序时,它应该自动获取先前给出的 url,并且文本字段应该作为空白提供新的。
谢谢