Method: UITableViewCell.value1
- Defined in:
- lib/ios/sugarcube-factories/uitableviewcell.rb
.value1(reuse_identifier, options = {}) ⇒ Object
returns a cell in the value1 style, with reuse identifier reuse_identifier. Supported options are :accessory, :text, :detail, :image, and :selection_style. Valid values for :accessory:
:none, :disclosure, :disclosureindicator, :detail,
:detaildisclosurebutton, :checkmark
or any UITableViewCellAccessory constant
Valid values for :selection_style:
:none, :blue, :gray
or any UITableViewCellSelectionStyle constant
30 31 32 |
# File 'lib/ios/sugarcube-factories/uitableviewcell.rb', line 30 def value1(reuse_identifier, ={}) return sugarcube_cell_factory(reuse_identifier, :value1, ) end |