MobiRuby

授权协议 Apache
开发语言 Ruby
所属分类 手机/移动开发、 iOS/iPhone/iPad开发包
软件类型 开源软件
地区 不详
投 递 者 柳胜
操作系统 iOS
开源组织
适用人群 未知
 软件概览

mruby是一款轻量级的Ruby实现,遵循ISO标准。它可以以解释的形式或者在VM上编译和执行形式运行。

示例代码:

    class NSString < Mobi::Cocoa::Object
    end
    
    class UIAlertView < Mobi::Cocoa::Object
    end
    
    def _S(str)
    NSString._stringWithUTF8String str
    end
    
    alert = UIAlertView._alloc \
    ._initWithTitle _S("Hello"),
    :message, _S("I'm MobiRuby"),
    :delegate, nil,
    :cancelButtonTitle, _S("I know!"),
    :otherButtonTitles, nil
    alert._show

相关阅读

相关文章

相关问答

相关文档