我是目标 c 编程和使用可可应用程序的新手。
这是我static URL
的基于 webview 的应用程序。
AppDelegate.h 包含
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet WebView *webview;
@end
我的 AppDelegate.m 包含
@implementation AppDelegate
@synthesize webview;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSString *urlString = @"http://www.google.com";
[[webview mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]]];
}
@end
使用这个指定URL
的 .
我正在尝试找出使我能够配置 URL 的解决方案。例如,从单独的窗口保存 URL 并通过点击保存按钮加载我的 webview 与新指定的 URL。
提前致谢