How to use WebView on xcode 4.5.1

被刻印的时光 ゝ 提交于 2019-12-03 00:29:23

In your AppDelegate.h file, add this line below the #import <Cocoa/Cocoa.h> line:

#import <WebKit/WebKit.h>

and add this line below the @property (assign) IBOutlet NSWindow *window; line:

@property (assign) IBOutlet WebView *webView;

Select your MainMenu.xib file.

Open the window inside it, then drag a WebView from the Object Library browser into the window. Align and size it.

There should be an icon representing your AppController object to the left of your UI layout. Control-drag from it to your WebView inside your window. (Do not control-drag from your File's Owner icon!) Release the mouse button. A contextual menu should appear, containing the word webView. Select it.

Add the framework WebKit.framework to your project. Right-click on your Frameworks folder in the resource list on the left side of the Xcode window. Choose "Add files to "<your project name>"... and select the framework using this path: /System/Library/Frameworks/WebKit.framework.

Select your AppDelegate.m file.

In your -applicationDidFinishLaunching: method, replace the comment with this code:

// I provided Apple's URL, but this is where you provide your own instead.
NSURL *url = [NSURL URLWithString:@"http://www.apple.com"];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
[[[self webView] mainFrame] loadRequest:urlRequest];

Build and run. When the window appears, you should see it load the web page you described in the URL.

A few final words:

I see that you're new here. What I've just done, in the context of Stack Overflow, is to give you a gift. You need to try a little harder looking for resources on the Web. I found two myself, but because they're a bit old (and the development tools look different enough), I embarked upon this answer. I want you to promise that you'll work harder to find answers for yourself. A great place to begin is by reading Apple's own very excellent documentation.

Did you find the Apple tutorial on this very subject:

WebView *webview = [[WebView alloc] init]; // or initialise using the modern-equivalent of InterfaceBuilder
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlText]]];
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!