rubymotion interface builder support (yes, with outlets)
Add this line to your application's Gemfile:
gem 'ib'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ib
In your Rake file:
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
# if you use bundler
require 'bundler'
Bundler.require
# if you are not using bundler
require 'rubygems'
require 'ib'
Motion::Project::App.setup do |app|
# ...
end
Generate controller with folllowing command:
ib c Hello UIViewController \
--outlets scroller:UIScrollView btn_hello:UIButton \
--actions say_hello \
--accessors data_source
The generated file:
class HelloController < UIViewController
extend IB
## define accessors
attr_accessor :data_source, :scroller, :htn_hello
## define ib outlets
ib_outlet :scroller, UIScrollView
ib_outlet :btn_hello, UIButton
## define actions
def say_hello(sender)
# TODO Implement action here
end
## define ib action
ib_action :say_hello
end
Run rake design
create Storyboard or nibs (put them in resources folder) and you will be able to bind outlets and actions to your ruby code.
Note : add ui.xcodeproj to your .gitignore
Here is sample app
- clone it
- run
bundle
- run
rake design
to change story board - run
rake
to run app in simulator
Note : this app is build for iOS 6.0 beta 2
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request