[问题] 加入档案的问题

楼主: ishuen (小小宇)   2014-01-29 16:01:53
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好像没这个东西
作者: atst2 (atst2)   2014-01-29 16:31:00
Command Line Tool的产出记得是没有封装, 就单纯的binary在这种情况下自然也没有Resource管理的地方以及需要而你所使用的读档方式,是直接到Package中的Resource里去找当然会找不到试着开一个Cocoa Application的专案, 再试一次从Resouce中读档的动作吧, 应该是会成功的.
楼主: ishuen (小小宇)   2014-01-30 21:47:00
感谢前辈解答

Links booklink

Contact Us: admin [ a t ] ucptt.com