1

AppleScriptの場合:

set allItems to every item whose name is "foo"

rb-appscriptの場合:

all_items = items[its.name.eq "Foo"]

MacRuby / ScriptingBridgeで同様の検索/述語/what-have-youを構築する方法はありますか?

4

1 に答える 1

0

問題が解決しました!

predicate = NSPredicate.predicateWithFormat %(name = "Foo")
all_items = items.filterUsingPredicate(predicate)

便利なリファレンス

于 2013-02-04T05:35:36.007 に答える