Sha256: 5bbf4eaa3a9151431aea4fd6d5e78c422c80827d3bb6de1ac3e5e0f6a4f34486
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
motion_require 'base' module Formotion module RowType class CheckRow < Base include BW::KVO def update_cell_value(cell) cell.accessoryType = cell.editingAccessoryType = row.value ? UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone end # This is actually called whenever again cell is checked/unchecked # in the UITableViewDelegate callbacks. So (for now) don't # instantiate long-lived objects in them. # Maybe that logic should be moved elsewhere? def build_cell(cell) cell.selectionStyle = self.row.selection_style || UITableViewCellSelectionStyleBlue update_cell_value(cell) observe(self.row, "value") do |old_value, new_value| update_cell_value(cell) end nil end def on_select(tableView, tableViewDelegate) if !row.editable? return end if row.section.select_one and !row.value row.section.rows.each do |other_row| other_row.value = (row == other_row) end elsif !row.section.select_one row.value = !row.value end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
formotion-1.8 | lib/formotion/row_type/check_row.rb |
formotion-1.7 | lib/formotion/row_type/check_row.rb |
formotion-1.6 | lib/formotion/row_type/check_row.rb |