NSString:如何在不知道其后缀“.png”的情况下将file.png更改为file_320.png?
我需要根据屏幕宽度为文件名创建 NSString,如果文件固定为 PNG 文件,我可以这样做:
[filename stringByReplacingOccurrencesOfString:@".png" withString:@"_320.png"]
但该文件可能不是 PNG 文件,所以我需要一种更通用的方法来添加“_320”更改文件名而不考虑其扩展名,我该怎么做?
多谢!
I need to create NSString for file name based on screen width, if the file is fixed to be a PNG file, I can do:
[filename stringByReplacingOccurrencesOfString:@".png" withString:@"_320.png"]
but the file may not be PNG file, so I need a more general way to add a "_320" to file name regardless of its extension, how do I do this?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
[文件名 stringByReplacingOccurrencesOfString:@"." withString:@"_320."]
[filename stringByReplacingOccurrencesOfString:@"." withString:@"_320."]