I have a problem with my storyboard in XCode 4.2.
The storyboard runs perfectly and I have no code errors.
I have connected one view of my app to a class by defining the class in the 'Show identity inspector' area. I have IBoutlet's in the class which I have been able to connect up using the storyboard view, so it's not a case that the view and class are not connected.
However when I try to code anything on the view for the app to do anything it won't work. i.e none of my methods are making any changes to the app. I have tried stripping it down and just doing something simple, but it's not affecting it at all.
My thoughts are maybe that for the view controller identifier I might have to include this in the code, but I can't find anything that says to do that.
Any help would be fantastic.
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
@interface MapView : UIViewController <UIApplicationDelegate, CLLocationManagerDelegate>
{
CLLocationManager *locationManager;
IBOutlet MKMapView *mapView;
IBOutlet UITextField *text;
IBOutlet UISegmentedControl *seg;
IBOutlet UIActivityIndicatorView *activityIndicator;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
/*- (void)findLocation;
- (void)foundLocation:(CLLocation *)loc;
- (IBAction)changeMapType:(id)sender;*/
@end
And the .m
#import "MapView.h"
#import "MapPoint.h"
@implementation MapView
@synthesize window=_window;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
locationManager = [[CLLocationManager alloc] init];
[locationManager setDelegate:self];
[locationManager setDistanceFilter:kCLDistanceFilterNone];
[locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
//[locationManager startUpdatingLocation];
[mapView setShowsUserLocation:YES];
[self.window makeKeyAndVisible];
return YES;
}
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
NSLog(@"%@", newLocation);
}
-(void)locationManager:(CLLocationManager *) manager didFailWithError:(NSError *)error
{
NSLog(@"Could not find location: %@", error);
}
@end