今日は深刻な脳の問題を抱えています。ViewController
からにデータを渡していUITableView
ます。pathForResource@"dynamicallypopulated"
基本的に私が達成したいのは、から来るものを動的に取り込むことですUITableView
(その後、txtファイルを関連付けます)。コードをステップ実行すると、値はそのNULL
すぐ上に設定されていても出力できます。
コード:
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"];
前もって感謝します!
ジェレミー