由于苹果地图adk的街道详细信息不够详细,并且google提供了新的sdk,因此我试图将其作为当前ios 6的解决方法,我面临的问题是它抛出了错误无论您在设置中放置了哪种架构,
以下是错误,尽管在sdkmapdemo上运行时没有问题:(

    Undefined symbols for architecture armv7:
  "___gxx_personality_sj0", referenced from:
      +[GMSServices provideAPIKey:] in GoogleMaps(GMSServices.o)
      +[GMSServices openSourceLicenseInfo] in GoogleMaps(GMSServices.o)
      +[GMSServices services] in GoogleMaps(GMSServices.o)
      _GMS_NSClassFromString in GoogleMaps(GMSRenames.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

最佳答案

您是否将libstdc++.dylib添加到项目的框架中?

08-27 12:48