I\'m unable to open a URL into UIWebView
so I\'ve seached & found that I need to encode URL, so I tried to encode it but, I\'ve facing problem in URL encodi
It's very simple to encode the URL in iPhone. It is as following
NSString* strURL = @"http://somedomain.com/data/Témp Page - Open.html";
NSURL* url = [NSURL URLWithString:[strURL stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
It's a perfect way to encode the URL, I am using it and it's perfectly work with me.
Hope it will help you!!!