lucasmontano / openweathermap-ios

Weather, everybody wants to know how it is going to be during the week. Will it be rainy, windy, or sunny? Luckily for us, in the information age, there are open APIs to retrieve information about it.
MIT License
30 stars 11 forks source link

Initial implementation of the map, authorization and target. #4

Closed felipebweber closed 4 years ago

felipebweber commented 4 years ago

This implementation prompts the user for authorization to use localization. If denied, when you open the app again, it shows the option to change the settings. And the target that will be used to explore the map has also been implemented.

henrique-morbin-ifood commented 4 years ago

@felipebweber ignore all files .DS_Store

felipebweber commented 4 years ago

How do I ignore the .DS_Store files in git?

henrique-morbin-ifood commented 4 years ago

How do I ignore the .DS_Store files in git?

https://stackoverflow.com/a/107921/1232654

henrique-morbin-ifood commented 4 years ago

@felipebweber, consider pushing the changes before resolving the issues.

henrique-morbin-ifood commented 4 years ago

@felipebweber to help you, what I am saying with "it does not belong to ..." is:


class SceneViewController: UIViewController {
   // here put functions that override functions from UIViewController, like Life Cycle
  // or new functions created and declared by you
}

extension SceneViewController: CLLocationManagerDelegate {
   // here put ONLY functions from CLLocationManagerDelegate protocol
}

extension SceneViewController: MKMapViewDelegate {
   // here put ONLY functions from MKMapViewDelegate protocol
}