ObjC:如何将组件插入到从A/B到A/之间/B的url?
我需要通过以下方式操作一些 URL 来添加组件:
/img/david/PlayBasketball.jpg
将变为:
/img/HiRes/david/PlayBasketball.jpg
,我该怎么做?
提前致谢!
I need to manipulate some URL in term of adding component to it in this way:
/img/david/PlayBasketball.jpg
will become:
/img/HiRes/david/PlayBasketball.jpg
in Objective C for iPhone, how do I do it?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
NSString
方法pathComponents
和pathWithComponents
:现在,
newPath
将是:@“/img/HiRes/david/PlayBasketball.jpg”
。Use the
NSString
methodspathComponents
andpathWithComponents
:Now,
newPath
will be:@"/img/HiRes/david/PlayBasketball.jpg"
.