gpt4 book ai didi

objective-c - 如何在 xcode 的 NSString 中使用变量作为文件名?

转载 作者:行者123 更新时间:2023-11-28 20:46:27 27 4
gpt4 key购买 nike

这是示例代码。如何使用此变量:“Readme.txt”作为文件名?提前致谢。

NSString *file_name = [NSString stringWithFormat:@"Readme"];
NSString *filePath=[[NSBundle mainBundle] pathForResource:@"%@",file_name ofType:@"txt"];

最佳答案

你可以简单地传入变量。

NSString *filePath = [[NSBundle mainBundle] pathForResource:file_name ofType:@"txt"];

此外,由于您将 file_name 定义为常量字符串,因此您不需要使用 stringWithFormat: 方法。您可以直接定义它。

NSString *file_name = @"Readme";

如果 file_name 变量每次都是自述文件,那么它是一个常量,根本不需要定义:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Readme" ofType:@"txt"];

关于objective-c - 如何在 xcode 的 NSString 中使用变量作为文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5906348/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com