2011-07-06 111 views
0

我使用的代碼pathForResources返回(空)

NSString *path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"test"]; 
NSLog(@"%@", path); 

這些線和的NSLog正在打印(空)。

我正在嘗試閱讀的文件是index.html。它位於我的項目文件夾中的測試文件夾中。有誰知道爲什麼路徑返回(空)。

感謝

克林頓

回答

0

此方法將返回nil,如果你的資源不能被發現。嘗試另一個如-(NSString *)pathForResource:(NSString *)name ofType:(NSString *)extension inDirectory:(NSString *)subpath指定'test'作爲目錄名稱。

還要確保您的文件已包含在您的應用程序包中...