sudheer
sudheer

Reputation: 29

Web view is not loading for particular url

I am trying to load webview for the following url http://www.topchickw.com/ but blank screen occured but same code is working for other url's

NSURL *myUrl = [NSURL URLWithString:@"http://www.topchickw.com/"];
NSURLRequest *myUrlRequest = [NSURLRequest requestWithURL:myUrl];
[self.myWebView loadRequest:myUrlRequest];    

Can any one suggest me how to load webview of the particular url
Thanks in Advance

Upvotes: 0

Views: 665

Answers (3)

azmuhak
azmuhak

Reputation: 974

A flash file runs when this url is loaded into browser. The issue is not with code but with the website as iOS doesnot support flash.

Upvotes: 0

Amar
Amar

Reputation: 13222

I am not an HTML expert. It seems that the URL when loaded is playing a flash video (.swf file). iOS does not support flash. Hence the blank screen.

enter image description here

To cross check this I try opening the URL in mobile safari browser, it did not work.

enter image description here

Hope that helps!

Upvotes: 6

Hussain Shabbir
Hussain Shabbir

Reputation: 15015

Well this url if you open manually in browser you will get blank window only. Please check the issue is not in the code.

Upvotes: 0

Related Questions