Skip to content

Instantly share code, notes, and snippets.

@reddragon
Created October 16, 2014 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reddragon/95a689aaadea3365a144 to your computer and use it in GitHub Desktop.
Save reddragon/95a689aaadea3365a144 to your computer and use it in GitHub Desktop.
iOS Class 2
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