Objective-C (コマンド ライン ツール) で単純なテキスト ファイルを読みたいのですが、これが私のコードです
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
NSBundle *bundle = [NSBundle mainBundle];
NSString *aPath = [bundle pathForResource:@"data" ofType:@"txt"];
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:aPath];
if (fileExists) {
NSLog(@"THERE!");
} else {
NSLog(@"NOT THERE!");
}
のようなフルパスを試したり、xcode に/Users/Me/dat
追加data.txt
したりしましたが、ファイルが読み込まれません。何が欠けていますか? ありがとう!