Skip to content

Instantly share code, notes, and snippets.

@pachun
Created December 25, 2012 00:26
Show Gist options
  • Select an option

  • Save pachun/4371151 to your computer and use it in GitHub Desktop.

Select an option

Save pachun/4371151 to your computer and use it in GitHub Desktop.
class TestVC < UIViewController
attr_accessor :hello
def viewDidLoad
super
@hello = 5
@goodbye = 3
puts "view did load:\n@hello = #{@hello}\n@goodbye = #{@goodbye}"
end
def viewWillAppear(animated)
puts "view will appear:\n@hello = #{@hello}\n@goodbye = #{@goodbye}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment