How to write UIWebView with default request address is like (192.168.1.1)..
Posted
by user323503
on Stack Overflow
See other posts from Stack Overflow
or by user323503
Published on 2010-04-22T17:33:11Z
Indexed on
2010/04/22
17:53 UTC
Read the original article
Hit count: 135
i have implemented UIWebView in my application but i default address is "192.168.1.1" but it is not open default it and i have tried with "http://www.google.com" it is working fine.
[iview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"192.168.1.1"]]];
it doesn't working and it is working with
[iview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
© Stack Overflow or respective owner