我尝试制作一个显示谷歌页面的网页视图,但如果我运行我的程序,它就会崩溃。我在.h中的代码:
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *window;
@property (weak) IBOutlet WebView *myWebView; //here I want to show google.com
@end
我在 .m 中的代码:
#import "AppDelegate.h"
@implementation AppDelegate
@synthesize myWebView;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[self loadWeb];
}
-(void)loadWeb {
[[webv mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString: @"http://www.google.de"]]]; // here I want to load the page
}
@end
问题总是说: int main(int argc, char argv[]) { return NSApplicationMain(argc, (const char * )argv); //绿色标记:线程1:信号SIGABRT }