Class: UnderOs::UI::Switch

Inherits:
Input
  • Object
show all
Defined in:
lib/under_os/ui/switch.rb

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Switch

Returns a new instance of Switch.



4
5
6
7
8
# File 'lib/under_os/ui/switch.rb', line 4

def initialize(options={})
  super
  self.checked = options[:checked] if options[:checked]
  @_.addTarget self, action: :handle_change, forControlEvents:UIControlEventValueChanged
end

Instance Method Details

#checkedObject



18
19
20
# File 'lib/under_os/ui/switch.rb', line 18

def checked
  @_.on?
end

#checked=(flag) ⇒ Object



22
23
24
# File 'lib/under_os/ui/switch.rb', line 22

def checked=(flag)
  @_.setOn flag, animated: true
end

#valueObject



10
11
12
# File 'lib/under_os/ui/switch.rb', line 10

def value
  @_value
end

#value=(value) ⇒ Object



14
15
16
# File 'lib/under_os/ui/switch.rb', line 14

def value=(value)
  @_value = value # just saving it on the instance
end