2012-11-05 190 views
0

今天我有嚴重的大腦問題。我將數據從UITableView傳遞到ViewController。基本上我想要實現的是動態填充[email protected]"dynamicallypopulated"與來自UITableView(它將繼續獲得關聯的txt文件)。當我單步執行代碼時,即使它設置在其上方,我可以輸出它,但值爲NULL動態填充pathForResource

代碼:提前

NSString *location = self.animalTitle; 

    NSLog(@"path : %@",animalTitle); 
    NSLog(@"path : %@",location); 

    //initWithFormat:@"Your favorite color is %@", favoriteColorTextField.text 

    NSString *path = [[NSBundle mainBundle] pathForResource:[location to be dynamic!!! what should I put here?] ofType:@"txt"]; 

謝謝!

Jeremy

回答

0

Ug。

我解決了它。代碼沒有問題。它必須處理我提交的文件,其中提供的內容被緩存,項目需要一個很好的清理......諷刺的是,這是我首先要做的。儘管如此,下面是代碼完成和工作。

NSString *path = [[NSBundle mainBundle] pathForResource:animalTitle ofType:@"txt"]; 

Brian放屁解決了。

謝謝!