我正在從Web服務響應,響應基於逗號分隔的URl如何在IOS格式化字符串(@ 「URL」)
NSString *str = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSLog(@"ResponseData: %@", str);
,其輸出是一樣
ResponseData: http://www.digitalnet.com/androidapi/images/post_images/img_2013-12-09-00-12-46.jpg,http://www.digitalnet.com/androidapi/images/post_images/img_2013-12-09-01-12-32.jpg
我想通過我的圖象畫廊的響應這需要像下面的URL格式
networkImages = [[NSArray alloc] initWithObjects:@"http://www.digitalnet.com/androidapi/images/post_images/img_2013-12-09-00-12-46.jpg",@"http://www.digitalnet.com/androidapi/images/post_images/img_2013-12-09-01-12-32.jpg",nil];
我如何格式化我到響應這樣我可以將其存儲到一些變量E,G; ABC和傳遞到
networkImages = [[NSArray alloc] initWithObjects:abc,nil];
這應該工作,除非您在其中一個網址中有逗號。如果可以,我會使用不是有效的URL字符的分隔符。或者返回一些JSON或XML格式的數據。 – DrummerB
實例方法'-componenetsSeparatedByStrings:'找不到(返回類型默認爲'id')當我試過這個 – Exception
@QuickApp檢查組件的拼寫時,可以從答案複製/粘貼方法名 – thelaws