tanjyy / ridesio

Ridesharing iOS application for college students. Won 2nd place in the iOS category at CodePath Demo Day 2020.
https://tanjyy.github.io/ridesio
1 stars 1 forks source link

Create data models for User and Trip. #60

Closed nashirj closed 3 years ago

nashirj commented 3 years ago

These classes can now be used to easily pass information from screen to screen, e.g.

let trip = cell.trip // get trip info from table view cell or something
let vc = RideDetailsViewController()
vc.trip = trip
// perform segue
nashirj commented 3 years ago

Are you able to take a look at this as well @tahaafzal5? This will be useful when implementing user sign up and log in and stuff. I know @yaosarayin is busy with midterms this week so she might not be able to get around to this for a few days

tahaafzal5 commented 3 years ago

Yes! Looks great to me!

nashirj commented 3 years ago

Thanks!