Skip to content

Instantly share code, notes, and snippets.

@dangalipo
Created January 30, 2013 07:53
Show Gist options
  • Save dangalipo/4671510 to your computer and use it in GitHub Desktop.
Save dangalipo/4671510 to your computer and use it in GitHub Desktop.
class UIViewWithDelegate < UIView
attr_accessor :controllerDelegate
def initWithFrame(frame, andDelegate: delegate)
self.initWithFrame(frame)
self.controllerDelegate = delegate
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment