3

".

例えば:

NSString *myStringWithURL = [NSString stringWithFormat: 
                             @"http://myurl.com/setParam.php?setName=
                             {\"name\":\"%@\"} ", name];
// myStringWithURL will return the desired URL but it is a String.
// of course I need it as URL in order to make the request.
NSURL *targetURL = [NSURL URLWithString : myStringWithURL]; 
                       //This will return nil. 

質問は、私の URL が nil を返さないようにする方法です。

{"name":"My Name"} の部分は JSON である必要がありますが、これは NSDictionary を使用してから JSON のパーサーなどを使用するよりも簡単に思えました。

大変お世話になりました!!

4

1 に答える 1

5

stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncodingを使用して文字列を変換します

于 2011-01-26T11:07:52.520 に答える