标签: ios objective-c cocoa-touch
我在我想要阅读的iOS应用中拖放了一个.csv文件。我知道从文件中读取的方法,但我不知道如何弄清楚它的路径。
那么,我该如何找出路径?
答案 0 :(得分:4)
使用pathForResource:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"fileExtension"];