我的 iOS 应用程序中捆绑了一个 *.txt 文件,需要阅读其内容。我已经找到了这个 Objective-C 代码:
NSString *myFilePath = [[NSBundle mainBundle]
pathForResource:@"MyFile"
ofType:@"txt"];
是否有有效的德尔福解决方案?
我的 iOS 应用程序中捆绑了一个 *.txt 文件,需要阅读其内容。我已经找到了这个 Objective-C 代码:
NSString *myFilePath = [[NSBundle mainBundle]
pathForResource:@"MyFile"
ofType:@"txt"];
是否有有效的德尔福解决方案?