GET に投稿するために、テキスト フィールド エントリからスペースを置き換えるのに助けが必要です
私の現在のコード:
NSString* urlString = [NSString stringWithFormat:@"http://server.com/ios/add.php?user=iPhone+App&message=%@", messageBox.text];
NSURL *add = [NSURL URLWithString:urlString];
[messageView loadRequest:[NSURLRequest requestWithURL:add]];
しかし、私は試しました
NSString *finalAdd = [add stringByReplacingOccurrencesOfString:@" " withString:@"+"];