如何在NSURL
中更換字符串? 我試過stringByReplacingOccurrencesOfString
,但它適用於NSString
。在NSURL中替換
NSURL *imageURL = [NSURL URLWithString:dataList[indexPath.item][@"image"]];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage *image = [UIImage imageWithData:imageData];
我要替換圖像的URL
http://example.com/image1.jpg
到
http://example.com/img1.jpg
謝謝。這是工作 – OsamahM
不客氣。請接受答案,如果它幫助你:) – akdsouza