Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RubyMotion 中是否允许使用 mixin?我有一个包含两个文件的目录。一个是类,另一个是模块。当我在课堂中包含模块(mixin)时,出现未找到错误。RM 中自动需要 app 下的所有内容,对吗?
谢谢你的帮助。
找到了!http://dylanmarkow.com/blog/2012/05/06/load-order-with-rubymotion/
我正在使用 Bundler,所以我最终在Motion::Project::App.setup do |app|块中放置了这样的东西:
Motion::Project::App.setup do |app|
app_files = app.files.reverse.pop app.files << Dir.glob(File.join(app.project_dir, 'lib/**/*.rb')) << app_files
肯定有更好的方法来做到这一点。