文字列の値を Web サービスに渡しています。文字列に何らかの値が含まれていれば問題ありません。
ただし、null の値が含まれていない場合は (null) と出力されます。
例:
NSMutableString *str1 = [NSMutableString stringWithFormat:@""];
NSString *string = [NSString stringWithFormat:@"str1 has %@ value", str1];
NSLog(@"%@", string);
印刷する必要があります: str1 has value
代わりに次のように表示されます: str1 has (null) value