NSString:如何在不知道其后缀“.png”的情况下将file.png更改为file_320.png?

发布于 2024-12-10 03:55:21 字数 238 浏览 0 评论 0原文

我需要根据屏幕宽度为文件名创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

想你的星星会说话 2024-12-17 03:55:21
NSString* ext = [filename pathExtention];
[[filename stringByDeletingPathExtension] stringByAppendingPathExtension: [NSString stringWithFormat: @"_320%@", ext]]
NSString* ext = [filename pathExtention];
[[filename stringByDeletingPathExtension] stringByAppendingPathExtension: [NSString stringWithFormat: @"_320%@", ext]]
怪我入戏太深 2024-12-17 03:55:21

[文件名 stringByReplacingOccurrencesOfString:@"." withString:@"_320."]

[filename stringByReplacingOccurrencesOfString:@"." withString:@"_320."]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文