Sha256: a9e29f779bfd7626c083434472f93b7c8eaa5f0fd03c1812e0cabac90d32d161

Contents?: true

Size: 691 Bytes

Versions: 23

Compression:

Stored size: 691 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
  ib_action :segueAction, UIStoryboardSegue

  def anotherAction button
  end

  def actionWithComment sender # test
  end

  def actionWithBrackets(sender)
  end

  def notAction with, toArgs
  end

  def actionWithoutArgs
  end

  def actionWithDefaultedArgs(sender = nil) #comment
  end

end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
ib-0.7.2 spec/fixtures/common/custom_view.rb
ib-0.7.1 spec/fixtures/common/custom_view.rb
ib-0.7.0 spec/fixtures/common/custom_view.rb
ib-0.6.0 spec/fixtures/common/custom_view.rb
ib-0.5.0 spec/fixtures/common/custom_view.rb
ib-0.4.9 spec/fixtures/common/custom_view.rb
ib-0.4.8 spec/fixtures/common/custom_view.rb
ib-0.4.7 spec/fixtures/common/custom_view.rb
ib-0.4.6 spec/fixtures/common/custom_view.rb
ib-0.4.5 spec/fixtures/common/custom_view.rb
ib-0.4.4 spec/fixtures/common/custom_view.rb
ib-0.4.3 spec/fixtures/common/custom_view.rb
ib-0.4.2 spec/fixtures/common/custom_view.rb
ib-0.4.1 spec/fixtures/common/custom_view.rb
ib-0.4.0 spec/fixtures/common/custom_view.rb
ib-0.3.5 spec/fixtures/custom_view.rb
ib-0.3.4 spec/fixtures/custom_view.rb
ib-0.3.3 spec/fixtures/custom_view.rb
ib-0.3.2 spec/fixtures/custom_view.rb
ib-0.3.1 spec/fixtures/custom_view.rb