MacRubyとCocoaを使用した値の設定で問題が発生しています。QCViewとQCPatchControllerをXIBに挿入し、コンポジションをQCPatchControllerにロードしました。すべてが実行されていますが、QCViewで公開された入力にアクセスできません。
attr_accessor :myQCView #this is bound to the QCController
...
def AppController
txt = "I did it"
@myQCView.setValue(txt, forKeyPath:"patch.text.value")
end
エラーが発生しました:
NSUnknownKeyException: [<NSNull 0x7fff7115e000> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key value. (RuntimeError)
私は困惑しています。MacRubyフォーラムを検索してみましたが、うまくいきませんでした。
アドバイスありがとうございます