I use the following code to get my location when a user presses a button
[mapview setShowsUserLocation:YES];
and then the follwoing to cen
On swift 3 I prefer use animated method:
mapView.setUserTrackingMode(.follow, animated: true)
but set property good worked:
mapView.userTrackingMode = .follow