From: Motohiro T. <mo...@gm...> - 2007-07-15 14:50:48
|
Hi, I want to publish some member variables in Ruby class to Objective-C. How can I do that ? in QuartzComposer framework, member named "input***" in custom class are automatically detected at runtime, like this: @interface MyCustomPatch : QCPatch { QCStringPort *inputFoo; } I wrote Ruby class like: class MyRubyCustomPatch < OSX::QCPatch attr_accessor :inputFoo ... end but "inputFoo" is not detected. I tried to wrote *.h for MyRubyCustomPatch class in Objective-C to publish inputFoo, but it was no use... sorry for my continuous posts. m(_ _)m |