This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I am having problems trying to get the user's current position to display on an MKMapView. Here is the relevant code: Header: // ParkingMapViewController.m #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface ParkingMapViewController : UIViewController <MKMapViewDelegate, CLLocationManagerDelegate> { MKMapView *mapView; CLLocationManager *locationManager; } @property (nonatomic, retain) IBOutlet MKMapView *mapView; @property (nonatomic, retain) CLLocationManager [...] read more