大家好,我无法弄清楚为什么我的 .txt 文件在我的模拟器上可以正常显示,但在我的 iphone 上却不行。
我发现了有关 .png 做同样事情的信息,但由于编译问题。
我的构建没有引发错误,并且节标题和正确的单元格数量出现但没有文本。
这是我用来从 .txt 文件中提取数据数组的代码。
那么有没有更好的方法将 .txt 文件中的数据提取到数组中?还是有像.png这样的编译问题?或者我是一个假人,我应该知道这不是从 .txt 文件创建数组的正确方法?
NSString *delimiter = @"\n";
/*
Pull contents of text file, convert to string format, separate by newline, finish by giving new local array a pointer
*/
//COWEL DOOR CHECK
NSData *cowelDoorCheckTF = [NSData dataWithContentsOfFile:@"/Users/Makey/Dropbox/iPreFlight/iPreFlight R22/Text Data Files/PreFlight/CowelDoorCheck.txt"];
NSString *cowelDoorCheckString = [[NSString alloc]initWithBytes:[cowelDoorCheckTF bytes] length:[cowelDoorCheckTF length] encoding:NSUTF8StringEncoding];
NSArray *cowelDoorCheck = [cowelDoorCheckString componentsSeparatedByString:delimiter];