Programming in Objective-C, 5th, page 405
书上说把TXT档拉到Xcode的左边来加入档案
在跳出的画面中选复制档案到专案资料夹
然后用下面的程式码显示TXT内容
NSString *txtFilePath = [[NSBundle mainBundle]
pathForResource: @"instructions"
ofType: @"txt"];
NSString *instructions = [NSString
stringWithCotentsOfFile: txtFilePath
encoding: NSUTF8Encoding
error: NULL];
我发现档案有被加到放.xcodeproj的那个资料夹
但是txtFilePath和instructions跑出来都是(null)
我把档案加到mainBundle显示的那个位置就可以
/Users/Jason/Library/Developer/Xcode/DerivedData/
xxxxxxxxx/Build/Products/Debug/instructions.txt
是因为我的专案是Command Line Tool的关系吗?
我上网查好像是要复制到Resource资料夹
不过Command Line Tool好像没这个东西