mastering ios development · week 7 - 13 + winter break 10/12 - 10/30 11/2 - 12/31 ship 1/4 - 1/8...

19

Upload: others

Post on 20-Jun-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility
Page 2: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

MASTERING IOS DEVELOPMENT

Page 3: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

TIMELINE

Assigned Project

Week 4 - 6

Personal Project

Week 7 - 13 + Winter Break

10/12 - 10/30 11/2 - 12/31

Ship

1/4 - 1/8

Lectures

Page 4: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

PREREQUISITES

Summer Academy iOS Development Track!

Page 5: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

LEARNING APPROACH

Summer Academy: Step-by-step instructions on how to implement

app

Twitter Bot Project: Step-by-step challenges

Advanced iOS Course: Project Specification, Lectures,

Outside Resources, Code Reviews → Come up with your entirely own solution

Page 6: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

LEARNING APPROACH

Lectures will give you a high-level overview (the stuff that’s

hard to Google) and introduce you to concepts and

terminology

Lectures will provide recommended reading to dive into the

details of each topic

Page 7: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

COVERED TOPICS

View Programming

Application Development

Platform Specifics

Tooling ArchitectureAdvanced

Topics

Auto Layout, Storyboards,

System UI Components,

Custom UI Components, Localization & Accessibility

Networking,

Threading,

Persistence,

Client-Server-

Sync

Standard

Libraries, Error Handling,

Memory

Management

Xcode, Instruments, Debugging,

Dependency Management

How to structure an iOS App, Distributing Information within Apps

Automated Testing,

Functional/Functional Reactive

Programming, Anatomy of an

iOS App

Page 8: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

EVALUATION

Page 9: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

EVALUATION

Weekly Code Reviews for assigned project

Develop on separate branch, have master be review-ready at

any time

Feedback Form will be used to capture feedback

Page 10: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

OUTSIDE RESOURCES

Page 11: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

MEETUPS

Swift Language User Group

NSMeetup

Find a dozen more on

meetup.com

Page 12: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

RECORDED TALKS

Recorded Talks of Swift Language User Group

WWDC 2015: Talks by Apple Engineers on topics ranging from

Swift over recent framework changes to app design

Recorded Conference Talks: Swift Summit, AltConf, 360iDev

(list of all Cocoa conferences)

Page 13: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

NEWSLETTERS

iOS Dev Weekly

This Week in Swift

iOS Goodies

Page 14: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

BLOGS

NSHipster

Advanced: mikeash.com/pyblog

No longer updated, still great: objc.io

Page 16: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

ASSIGNED PROJECT

Page 17: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

TRIP PLANNERApp that allows users to plan trips

Trips consist of multiple waypoints

Users can search for waypoints by using the Google Places API

Waypoint locations are visualized within a MapView

Page 18: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

TRIP PLANNER

Custom API Server written in Flask

Local persistence using Core Data

Communication with Google Places API

Synchronization of Trips with Server

Page 19: MASTERING IOS DEVELOPMENT · Week 7 - 13 + Winter Break 10/12 - 10/30 11/2 - 12/31 Ship 1/4 - 1/8 Lectures. ... System UI Components, Custom UI Components, Localization & Accessibility

TRIP PLANNER

At the end of the project we will provide you with an example

solution!