0
xcodeからアプリケーションを起動するときに、アプリケーションが正常に動作しなくなるという問題が発生しています。私はWebViewを持っているMac OS Xアプリケーションを構築しようとしています。WebView OSX Xcodeプロジェクトで起動時にURLがロードされる
AppDelegateファイルを介してwebviewとwebviewを接続します。なぜ私は私のアプリをテストしようとするとクラッシュし続けますか?
これは私が取得エラーです: "スレッド1:プログラム受信SignalL "SIGABRT""
は、これは私が持っている:
@interface WebViewExampleAppDelegate : NSObject {
NSWindow *window;
IBOutlet WebView *webView;
}
@property (assign) IBOutlet NSWindow *window;
@property (nonatomic, retain) IBOutlet WebView *webView;
@end
@implementation WebViewExampleAppDelegate
@synthesize window;
@synthesize webView;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
}
- (void)awakeFromNib {
NSString *resourcesPath = [[NSBundle mainBundle] resourcePath];
NSString *htmlPath = [resourcesPath stringByAppendingString:@"/htdocs/index.html"];
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:htmlPath]]];
}
このエラーはどの行で表示されますか? – user1118321