Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fernandojinzenji/2c8b13b31b5b5347caff9c81efd85c6e to your computer and use it in GitHub Desktop.
Save fernandojinzenji/2c8b13b31b5b5347caff9c81efd85c6e to your computer and use it in GitHub Desktop.
Week 3, Monday - Readings and Questions
Question 1:
Call [[UIDevice currentDevice] setValue:@(UIInterfaceOrientationLandscapeLeft) forKey:@"orientation"] in viewDidAppear.
or uncheck the Landscape Left and Landscape Right options under Deployment Info, Device Orientation.
Question 2:
- Tabbar: Twitter, Facebook
- PageView: iBooks, Flipboard
- Navigation: Weather, AppStore
Question 3:
- When returning from background, only willDidAppear will be called. After restarting the phone, both methods will be called
(viewDidAppear and viewDidLoad)
Question 4:
- Fat View Controller are view controllers with more code than necessary, making their maintanence and readability more
difficult to programmers.
Question 5:
- Avoid animations in transitions, excessive bright colors, flatted buttons and some 3d effects. Always follow Apple Guidelines to ensure that the app is consistent with native apps and will work with the available acessibility features.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment