次のようなURLのコードがあります...最初の*urlを使用すると、Webページはnullを返します。このURLをbit.lyのようなURL短縮システムに入れると、それは機能し、ページのHTMLを文字列として返します。最初の*urlに無効な文字が含まれているとしか思えませんか?何か案は?
NSString *url =@"http://www.testurl.com/testing/testapp.aspx/app.detail/params.frames.y.tpl.uk.item.1.cm_scid.TB-test/left.html.|metadrill,html/walk.yah.ukHB?cm_re=LN-_-OnNow-_-TestOne";
//above *url does not work, one below does
NSURL *url =[NSURL URLWithString: @"http://bit.ly/shortened"];
NSString *webpage = [NSString stringWithContentsOfURL:url];