ios - Does RubyMotion support integration of objective-c code? -
there ton of libraries/pieces of code have been built in objective-c can rubymotion use these bits without rewriting them in ruby?
there couple ways this. 1 vendoring 3rd party code vendor directory , using app.vendor_project method in rakefile. see using 3rd party libraries example.
another option using cocoapods. motion-cocoapods ruby gem, can add of libraries here using this:
app.pods dependency 'jsonkit' end
Comments
Post a Comment