class ViewSuperView

Public Instance Methods

dealloc() click to toggle source
Calls superclass method
# File spec/motion/ui/ui_view_wrapper_spec.rb, line 78
def dealloc
  App.notification_center.post('ViewSuperView dealloc', nil, {'tag'=>tag})
  super
end
initWithFrame(frame) click to toggle source
Calls superclass method
# File spec/motion/ui/ui_view_wrapper_spec.rb, line 68
def initWithFrame(frame)
  super
  subject = UIView.alloc.init
  subject.when_tapped do
    #Can be empty, but we need a block/proc here to potentially create a retain cycle
  end
  addSubview(subject)
  self
end