Permalink
Browse files

viewcontroller case down typo

  • Loading branch information...
1 parent 76e7429 commit 5d3068ee499a3f0e0e25223a328dbb3837a7282f @kahopoon committed Jul 13, 2016
@@ -12,7 +12,7 @@
111183161D2E76AF00AD1C0E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 111183141D2E76AF00AD1C0E /* Main.storyboard */; };
111183181D2E76AF00AD1C0E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 111183171D2E76AF00AD1C0E /* Assets.xcassets */; };
1111831B1D2E76AF00AD1C0E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 111183191D2E76AF00AD1C0E /* LaunchScreen.storyboard */; };
- 111183231D2E76D000AD1C0E /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 111183221D2E76D000AD1C0E /* MapKit.framework */; };
+ 115479541D3487AF00013FD1 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 111183221D2E76D000AD1C0E /* MapKit.framework */; };
E315B83FC44B3AD4B794B82A /* Pods_PokemonController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2DD9AB658356283817A1F62 /* Pods_PokemonController.framework */; };
/* End PBXBuildFile section */
@@ -35,7 +35,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 111183231D2E76D000AD1C0E /* MapKit.framework in Frameworks */,
+ 115479541D3487AF00013FD1 /* MapKit.framework in Frameworks */,
E315B83FC44B3AD4B794B82A /* Pods_PokemonController.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
@@ -15,7 +15,7 @@
endingColumnNumber = "9223372036854775807"
startingLineNumber = "40"
endingLineNumber = "40"
- landmarkName = "changeCurrentLocation(_:)"
+ landmarkName = "mapView(_:regionDidChangeAnimated:)"
landmarkType = "5">
</BreakpointContent>
</BreakpointProxy>
@@ -31,7 +31,7 @@
endingColumnNumber = "9223372036854775807"
startingLineNumber = "39"
endingLineNumber = "39"
- landmarkName = "changeCurrentLocation(_:)"
+ landmarkName = "mapView(_:regionDidChangeAnimated:)"
landmarkType = "5">
</BreakpointContent>
</BreakpointProxy>
@@ -53,7 +53,7 @@ class ViewController: UIViewController, MKMapViewDelegate {
case .UP:
currentLocation.latitude += moveInterval()
currentLocation.longitude += jitter
- case .DOWN
+ case .DOWN:
currentLocation.latitude -= moveInterval()
currentLocation.longitude += jitter
}

0 comments on commit 5d3068e

Please sign in to comment.