0

我正在实现一个使用谷歌地图功能的应用程序,在模拟器和我的 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

太感谢了!

http://i.stack.imgur.com/5UrhG.png

http://i.stack.imgur.com/D0Q6w.png

4

1 回答 1

0

这帮助我解决了这个问题。 http://www.galloway.me.uk/2012/09/hacking-up-an-armv7s-library/

谁可能需要。

于 2013-07-07T08:48:27.957 回答