更改 NSURL
我尝试在 NSURL 中插入一些内容。我从 json 字符串获取 URL:
imageUrl = [NSURL URLWithString:[[jsonPost objectAtIndex:countPage] objectForKey:@"excerpt"]];
imageURL 现在包含以下内容:
http://www.site.com/images/uploads/2011/04/2010-12-14-image.gif
我试图实现的是将 URL 更改为:
http://www.site.com/images/uploads/2011/04/2010-12-14-image_r.gif
因此,在扩展名之前将添加 _r 。
I try to insert something within an NSURL. I get my URL from a jSon string:
imageUrl = [NSURL URLWithString:[[jsonPost objectAtIndex:countPage] objectForKey:@"excerpt"]];
The imageURL now contains the following:
http://www.site.com/images/uploads/2011/04/2010-12-14-image.gif
What i try to achieve is to change the URL to:
http://www.site.com/images/uploads/2011/04/2010-12-14-image_r.gif
So there will be _r added right before the extension.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法 1:(如果您知道文件扩展名是
.gif
,则可以正常工作)编辑:
更可靠的解决方案:
method 1:(works ok if you know the file extension to be
.gif
)edit:
a more reliable solution: