0

配列内の URL を開きたいのですが、うまくいきません。これは私のコードです:

NSArray *platformarray = [[NSArray alloc] initWithObjects:iphonestring,ipadstring,androidstring,blackberrystring, windowsstring,nil];


    NSString *url = [NSString stringWithFormat:@"http://xxx.nl/appofferte.php?hoedanigheid=%@&bedrijfsnaam=%@&naam=%@&email=%@&telefoon=%@&platformen=%@", hoedanigheid, bedrijf.text, naam.text, email.text, telefoon.text, platformarray];
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];

    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];

配列を 1 つの変数に入れるのを誰が手伝ってくれますか?

4

2 に答える 2

0
hoedanigheid=%@&bedrijfsnaam=%@&naam=%@&email=%@&telefoon=%@&platformen=%@", hoedanigheid, bedrijf.text, naam.text, email.text, telefoon.text, platformarray]; 

platformarray を次のように変更します[platformarray objectAtIndex:thePlatformThatIWant];[platformarray objectAtIndex:0];

hoedanigheid=%@&bedrijfsnaam=%@&naam=%@&email=%@&telefoon=%@&platformen=%@", hoedanigheid, bedrijf.text, naam.text, email.text, telefoon.text, [platformarray objectAtIndex:thePlatformThatIWant]];
于 2013-02-25T13:52:12.293 に答える
0

配列内のすべての項目が文字列の場合、それらを次のように組み合わせることができます。

NSString* combined = [platformarray componentsJoinedByString:@","];
于 2013-02-25T13:49:39.170 に答える