如何正確替換以下內容?如何用nsstring變量替換%@? iPhone
NSString *stringURL = [NSString stringWithFormat:@"http://192.168.1.183:8001/GetDocument.aspx?id=%@ & user=admin_document",self.index];
NSURL *targetURL = [NSURL URLWithString:stringURL];
我想用self.index替換%@。
你面臨的問題是什麼? –
你想要什麼? –
是self.index是整數或字符串類型...如果字符串類型然後使用%@,或者如果整數類型然後使用%d – SachinVsSachin