0

我今天有严重的大脑问题。我正在将数据ViewController从 a传递到 a 中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"];

提前致谢!

杰里米

4

1 回答 1

0

呃。

我解决了。代码没有任何问题。它与我带来的文件有关,前提是内容被缓存并且项目需要很好的清理......具有讽刺意味的是,这确实是我首先要做的。不过,下面是已完成且正在运行的代码。

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

布赖恩放屁解决了。

谢谢!

于 2012-11-06T06:53:21.847 回答