iOS Class 2
This file contains 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
If you delete the default Storyboard etc., put this in the AppDelegate.m | |
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; | |
When setting things like images in cells, reuse the cells. For some reason, if you allocate a fresh cell, it doesn't work. | |
Pass data between controllers, rather than views, or modifying the view of the next controller. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment