Created
December 25, 2012 00:26
-
-
Save pachun/4371151 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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