parvind
parvind

Reputation: 907

website not upload using webview

ihave write the following code but it does nothing in consloe it shows Unknown scheme, doing nothing

[webview setDeleagte self];
[webView loadRequest:[[NSURLRequest alloc] initWithURL:[[NSURL alloc] initWithString:sourcelinkStr]]];

Upvotes: 1

Views: 388

Answers (1)

kalpesh jetani
kalpesh jetani

Reputation: 1803

NSString *strURL = @"https://facebook.com";
NSURL *url = [NSURL URLWithString:strURL];
webView.delegate = self;
[webView loadRequest:[NSURLRequest requestWithURL:url]];

now , we have to define Methods For LoadRequest
thanks..

Upvotes: 1

Related Questions