".
例えば:
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 のパーサーなどを使用するよりも簡単に思えました。
大変お世話になりました!!