Mac アプリの開発を始めたばかりで、アプリの起動時に WebView に URL を設定したいのですが、私のコードは次のとおりです。
AppDelegate.h
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface AppDelegate : NSObject <NSApplicationDelegate> {
WebView *myWebView;
//other instance variables
}
@property
(retain, nonatomic) IBOutlet WebView *myWebView;
//other properties and methods
@end
AppDelegate.m :
#import "AppDelegate.h"
#import <WebKit/WebKit.h>
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSString *urlText = @"http://google.com";
[[self.myWebView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlText]]];
return;
// Insert code here to initialize your application
}
@end
WebView (OSX プロジェクト) で起動時に URL をロードする方法は?
コードは機能すると思いますが、Interface Builder でコードを WebView に接続しようとすると、アウトレットのリストに「Web ビュー」が見つかりません。前回の投稿に続いてコードを更新しましたが、まだ機能しません。返信ありがとうございます。