1

RubyMotion 不支持

require 

在代码中(仅在 RakeFile 中)。

有没有办法使用 Ruby 内置的有用类而不是 RubyMotion ?例如,我希望能够做一个

name=Pathname.new("/path/to/some/file").basename

而不是寻找可可等价物

4

1 回答 1

2

PathnameRuby 标准库中 RubyMotion 中不可用的部分之一。

您可以尝试使用MotionBundler,但我个人对此并不十分幸运。

我建议使用 Cocoa 等价物。就像是:

name = "/path/to/some/file".lastPathComponent

没那么糟糕,反正。

于 2013-08-16T10:15:51.317 回答