lib/ProMotion/cocoatouch/table_view_controller.rb in ProMotion-1.0.0 vs lib/ProMotion/cocoatouch/table_view_controller.rb in ProMotion-1.0.1
- old
+ new
@@ -4,9 +4,14 @@
s = self.alloc.initWithNibName(nil, bundle:nil)
s.on_create(args) if s.respond_to?(:on_create)
s
end
+ def loadView
+ super
+ self.send(:on_load) if self.respond_to?(:on_load)
+ end
+
def viewDidLoad
super
self.view_did_load if self.respond_to?(:view_did_load)
end
\ No newline at end of file