I am building a iOS app using Rubymotion. I need to "convert" a piece of Objective-c code into Ruby. Is this correct?
Originally in Objective-c
[movieWriter setCompletionBlock:^{
[filter removeTarget:movieWriter];
[movieWriter finishRecording];
}];
Same thing in Ruby?:
movieWriter(setCompletionBlock:-> { filter.removeTarget(movieWriter) }, { movieWriter.finishRecording })
No. The syntax for message sends in Ruby is not
object(message:arguments)
and the syntax for having multiple statements in a block is not{statement1} {statement2}
. Instead, you'd want something like this:(RubyMotion translates setters like
completionBlock=
into the appropriatesetCompletionBlock:
method. If you wanted to use the explicit setter method, it would look likemovieWriter.setCompletionBlock(lambda do …)
.)