微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

cocos ios,other linker flags 加入 -objc 编译报错解决方案

在嵌入 supersonic 的广告sdk时 遇到了同样的问题.
supersonic也要求加入 -ObjC

Undefined symbols for architecture armv7s:
  "_GCControllerDiddisconnectNotification",referenced from:
      -[GCControllerConnectionEventHandler observerConnection:disconnection:] in libcocos2dx iOS.a(CCController-iOS.o)
  "_GCControllerDidConnectNotification",referenced from:
      -[GCControllerConnectionEventHandler observerConnection:disconnection:] in libcocos2dx iOS.a(CCController-iOS.o)
  "_OBJC_CLASS_$_GCController",referenced from:
      objc-class-ref in libcocos2dx iOS.a(CCController-iOS.o)
     (maybe you meant: _OBJC_CLASS_$_GCControllerConnectionEventHandler)
ld: symbol(s) not found for architecture armv7s
clang: error: linker command Failed with exit code 1 (use -v to see invocation)

我用的是iphone5c,昨天使用admob的广告,这个sdk要求要将Other Linker Flags 设置成 -ObjC。不知如何解决以上报错。

解决方法

增加两个库:
MediaPlayer.framework
GameController.framework

原因参见:

http://stackoverflow.com/questions/24844766/linking-errors-when-adding-admob-to-ios-cocos2d-x-3-2

http://www.jb51.cc/article/p-xabtfycs-ek.html

原文地址:https://www.jb51.cc/cocos2dx/339938.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐