Skip to content

Instantly share code, notes, and snippets.

@joshuawright11
Last active October 2, 2017 20:39
Show Gist options
  • Select an option

  • Save joshuawright11/351e6c8f9af8b0cbe5eb56b03db14792 to your computer and use it in GitHub Desktop.

Select an option

Save joshuawright11/351e6c8f9af8b0cbe5eb56b03db14792 to your computer and use it in GitHub Desktop.
Notes for September 27th session

Overview

Xcode and iOS Apps

  • Views are in .storyboard files
  • code that operates on the views is in a UIViewController
  • a UIViewController is linked to each screen in the storyboard

The Code

  • Variables (also known as Objects): Store data about something (such as a UILabel in the view, or a piece of text)
  • Functions: named blocks of code that can be run
  • Classes (Didn't talk much about this): Blueprints for Objects

UITableViews

  • used for displaying lists of data
  • requires writing special functions that tell the view how to layout the list (how many items, what each item should look like)

Project

Writing a todo list (we'll stick to this for the next couple of sessions)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment