我正在实现一个使用谷歌地图功能的应用程序,在模拟器和我的 iPhone 4 设备上一切正常,但是当我尝试在 iPhone 5 上构建应用程序时,我遇到了链接器命令失败的问题。
附件是我在构建设置中设置的。
有人遇到这个问题吗?我坚持了将近 1 周 >"< 。
这是我在file.h中的代码
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import <MapKit/MapKit.h>
#import "MyViewController.h"
#import "MyAnnotation.h"
#import <GoogleMaps/GoogleMaps.h>
@interface PaymentViewController : MyViewController <CLLocationManagerDelegate, GMSMapViewDelegate> {
MKMapView *mapView;
CLLocationManager *myLocationManager;
CLLocation *myLocation;
MyAnnotation *annotation;
GMSMapView *myGoogleMapView;
}
@property (nonatomic, retain) MKMapView *mapView;
@property (nonatomic, retain) CLLocationManager *myLocationManager;
@property (nonatomic, retain) MyAnnotation *annotation;
@property (nonatomic, retain) GMSMapView *myGoogleMapView;
@property (nonatomic, retain) CLLocation *myLocation;
@end
这是file.m
#import "PaymentViewController.h"
@interface PaymentViewController ()
@end
@implementation PaymentViewController
@synthesize mapView, myLocationManager, annotation, myGoogleMapView, myLocation;
-(void)loadView{
[super loadView];
self.title =@"Input Payment";
/*--------- create google map view --------*/
myGoogleMapView = [[GMSMapView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height/3)];
myGoogleMapView.myLocationEnabled = YES;
//myGoogleMapView.settings.myLocationButton = YES;
myGoogleMapView.mapType = kGMSTypeNormal;
[self.view addSubview:myGoogleMapView];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
//this will register the KVO (Key Value Obversing) for key myLocation
[self.myGoogleMapView addObserver:self forKeyPath:@"myLocation" options:NSKeyValueObservingOptionNew context: nil];
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
//this will check the key that we register before and excute the code inside this function
if ([keyPath isEqualToString:@"myLocation"] && [object isKindOfClass:[GMSMapView class]])
{
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:self.myGoogleMapView.myLocation.coordinate.latitude longitude:self.myGoogleMapView.myLocation.coordinate.longitude
zoom:17
];
self.myGoogleMapView.camera = camera;
// [self.myGoogleMapView animateToCameraPosition:[GMSCameraPosition
// cameraWithLatitude:self.myGoogleMapView.myLocation.coordinate.latitude
// longitude:self.myGoogleMapView.myLocation.coordinate.longitude
// zoom:16]];
}
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
[self.myGoogleMapView removeObserver:self forKeyPath:@"myLocation"];
}
@end
太感谢了!