Sha256: 9cccdae884635764012aab7809eeca801fc23fcd49d5d7021c0690ba71aa6150

Contents?: true

Size: 587 Bytes

Versions: 9

Compression:

Stored size: 587 Bytes

Contents

class CustomView < UIView
  extend IB

  ib_outlet :greenLabel,  UIGreenLabel
  ib_outlet :redLabel, "UILabel"

  ib_outlet :untyped_label

  outlet :yellowLabel

  ib_outlet_collection :greenLabelCollection,  UIGreenLabel
  ib_outlet_collection :redLabelCollection, "UILabel"

  ib_outlet_collection :untyped_label_collection

  outlet_collection :yellowLabelCollection

  ib_action :someAction

  def anotherAction button
  end

  def actionWithComment sender # test
  end

  def actionWithBrackets(sender)
  end

  def notAction with, toArgs
  end

  def actionWithoutArgs
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ib-0.2.7 spec/fixtures/custom_view.rb
ib-0.2.6 spec/fixtures/custom_view.rb
ib-0.2.5 spec/fixtures/custom_view.rb
ib-0.2.4 spec/fixtures/custom_view.rb
ib-0.2.3 spec/fixtures/custom_view.rb
ib-0.2.2 spec/fixtures/custom_view.rb
ib-0.2.1 spec/fixtures/custom_view.rb
ib-0.2.0 spec/fixtures/custom_view.rb
ib-0.1.4 spec/fixtures/custom_view.rb