cocos2dx3.2 Other Linker Flags 设置成 -ObjC 报错

cocos2dx3.2 RC0 工程 ,Other Linker Flags 设置成 -ObjC 时候 ,真机无法编译通过。我用的是5c
以下是错误信息

Undefined symbols for architecture armv7s:
“_GCControllerDidDisconnectNotification”, referenced from:
- in libcocos2dx iOS.a(CCController-iOS.o)
“_GCControllerDidConnectNotification”, referenced from:
- 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)

昨天加admob的广告,纠结了一天,最后新建了一个工程,然后只改 Other Linker Flags 成 -ObjC ,才发现,只要是这个设置,真机就没发编译过。
求解决方案~~

增加几个framework 。。。 应该有GameControll好像 还有一个MediaPlayer

遇到同一个问题 顶一下 解决了没有 ?

添加相关的Framework到库,在Xcode->TARGETS->Build Phases->Link Binary With Libraries中添加:
AdSupport.framework
AudioToolbox.framework
AVFoundation.framework
CoreGraphics.framework
MessageUI.framework
StoreKit.framework
SystemConfiguration.framework
libGoogleAdMobAds.a
iAd.framework
CoreTelephony.framework

6.12后还需要增加
EventKitUI.framework
EvnetKit.framework

cocos2dx需要多增加
MediaPlayer.framework
GameController.framework

:2: 问题解决