this is my code and i want use this object to show loading progress,what should i do?
// view.h
#import <Cocoa/Cocoa.h>
#import<WebKit/WebKit.h>
@interface view : NSObject {
IBOutlet WebView* webview;
}
-(IBAction) google:(id) sender;
@end
//view.m
#import "view.h"
@implementation view
-(IBAction) google:(id) sender
{
[[webview mainFrame] loadRequest:
[NSURLRequest requestWithURL:
[NSURL URLWithString:@"http://www.google.com/finance/converter"]]];
}
@end