1. 首页
  2. 数据库
  3. 其它
  4. motion settings bundle:为RubyMotion应用程序创建Settings.bundle 源码

motion settings bundle:为RubyMotion应用程序创建Settings.bundle 源码

上传者: 2021-04-19 09:57:21上传 ZIP文件 172.49KB 热度 14次
运动设置包 为您的RubyMotion应用程序创建一个Settings.bundle。 这使您的应用程序在“设置”应用程序中具有“全局”设置条目。 安装 将此行添加到您的应用程序的Gemfile中: gem 'motion-settings-bundle' 然后执行: bundle 或将其自己安装为: gem install motion-settings-bundle 用法 像这样将大量代码添加到项目的Rakefile : require 'motion-settings-bundle' Motion :: SettingsBundle . setup do | app | # A text field. Allows configuration of a string. app . text "Name" , key : "username" , default : "
用户评论