我開發在該應用程序,我需要在同一時間在NSURL傳遞多個參數 我的代碼,一個應用程序是如何在iOS中傳遞NSURL字符串中的多個參數?
responseData = [[NSMutableData data] retain];
ArrData = [NSMutableArray array];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://rate-exchange.appspot.com/currency?from=%@&to=%@&q=%@",strfrom,strto,strgo]];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
//NSURLRequest *request1 = [NSURLRequest requestWithURL:
//[NSURL URLWithString:@"http://rate-exchange.appspot.com/currency?from=%@&to=%@&q=1",strfrom,strto]];
上面的代碼,我需要動態傳遞多個參數。可能嗎 ?如果是,那麼怎麼樣? 感謝&問候
嘗試創建一個單獨的字符串添加到URL像'NSSString之前*海峽= [NSString stringWithFormat:@「http://rate-exchange.appspot.com/currency?from=%@&to=%@&q=%@」,strfrom,strto,strgo]',然後將此str添加到URL – nsgulliver 2013-02-26 12:23:19
首先將所有參數傳遞給NSString,然後將最終字符串分配給NSURL。 – jamil 2013-02-26 12:24:08
我不能完全理解你的問題。你仍然在你的問題中傳遞多個參數 – Warewolf 2013-02-26 12:40:46