Sha256: cc9b7bddfbb604f7a3cd79fdda1975fb358314c34ed6a35597c43e0e6c12f89b

Contents?: true

Size: 1.07 KB

Versions: 22

Compression:

Stored size: 1.07 KB

Contents

class UIControlController < UIViewController
  attr :button1
  attr :button2
  attr :touched
  attr :touched_count
  attr :event
  attr :touched_1
  attr :touched_2

  def reset
    @touched = nil
    @touched_count = 0
    @event = nil
    @touched_1 = false
    @touched_2 = false
  end

  def loadView
    super.tap do
      @button1 = UIButton.rounded
      @button1.setTitle('one', forState: :normal.uicontrolstate)
      @button1.sizeToFit
      @button1.center = self.view.center
      self.view << @button1

      @button2 = UIButton.rounded
      @button2.setTitle('two', forState: :normal.uicontrolstate)
      @button2.sizeToFit
      @button2.center = [@button1.center.x, @button1.center.y + 30]
      @button1.center = [@button1.center.x, @button1.center.y - 30]
      self.view << @button2

      @button1.on :touch { |sender,event|
        @touched_1 = true
        @touched = sender
        @touched_count += 1
      }

      @button2.on :touch { |sender,event|
        @touched_2 = true
        @touched = sender
        @touched_count += 1
      }

      reset
    end
  end

end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
sugarcube-0.20.20 app/uicontrol_controller.rb
sugarcube-0.20.19 app/uicontrol_controller.rb
sugarcube-0.20.18 app/uicontrol_controller.rb
sugarcube-0.20.17 app/uicontrol_controller.rb
sugarcube-0.20.16 app/uicontrol_controller.rb
sugarcube-0.20.15 app/uicontrol_controller.rb
sugarcube-0.20.13 app/uicontrol_controller.rb
sugarcube-0.20.12 app/uicontrol_controller.rb
sugarcube-0.20.11 app/uicontrol_controller.rb
sugarcube-0.20.10 app/uicontrol_controller.rb
sugarcube-0.20.9 app/uicontrol_controller.rb
sugarcube-0.20.8 app/uicontrol_controller.rb
sugarcube-0.20.7 app/uicontrol_controller.rb
sugarcube-0.20.6 app/uicontrol_controller.rb
sugarcube-0.20.5 app/uicontrol_controller.rb
sugarcube-0.20.4 app/uicontrol_controller.rb
sugarcube-0.20.3 app/uicontrol_controller.rb
sugarcube-0.20.1 app/uicontrol_controller.rb
sugarcube-0.20.0 app/uicontrol_controller.rb
sugarcube-0.19.5 app/uicontrol_controller.rb