如何从RubyMotion代码中的resources文件夹访问文件?

时间:2012-06-20 12:53:46

标签: ios rubymotion

我的Rubymotion项目的资源/文件夹中有一些数据文件。如何在代码中访问它们?没有路径访问它们是行不通的。

e.g。 我在资源中有一个文件/名为schema.json

这是我正在使用的代码:

NSData.dataWithContentsOfFile("schema.json") <--- returns nil

1 个答案:

答案 0 :(得分:6)

想出来。

path = NSBundle.mainBundle.pathForResource("schema", ofType:"json")
NSData.dataWithContentsOfFile(path)