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

时间:2011-05-06 03:04:58

标签: objective-c cocoa-touch ios nsstring

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

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

4 个答案:

答案 0 :(得分:3)

您可以简单地传递变量。

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

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

NSString *file_name = @"Readme";

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

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

答案 1 :(得分:0)

你做错了是,

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

而不是代码,

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

答案 2 :(得分:0)

NSString *file_name = @"Readme.txt";

NSString *name = [file_name stringByDeletingPathExtension];
NSString *extension = [file_name pathExtension];

NSString *file_path = [[NSBundle mainBundle] pathForResource:name ofType:extension];

答案 3 :(得分:0)

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