Google Identity Toolkit のログインを使用するアプリケーションを作成しましたが、最新バージョンの Xcode に更新して iOS 9 向けの開発を開始するまでは問題なく動作していました。Cocoapods を使用して GITkit をインストールする必要がありました。コンパイル時に、特定の組み込みクラスを参照すると、次のエラーが発生します。また、インポート文を から に変更する必要があり#import <GITkit/GITkit.h>
ました#import "GITkit.h"
。
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_GITClient", referenced from:
objc-class-ref in H2LoginViewController.o
objc-class-ref in H2AppDelegate.o
"_OBJC_CLASS_$_GITIDToken", referenced from:
objc-class-ref in H2LoginViewController.o
"_OBJC_CLASS_$_GITInterfaceManager", referenced from:
objc-class-ref in H2LoginViewController.o
"_kGITProviderFacebook", referenced from:
-[H2AppDelegate application:didFinishLaunchingWithOptions:] in H2AppDelegate.o
"_kGITProviderGoogle", referenced from:
-[H2AppDelegate application:didFinishLaunchingWithOptions:] in H2AppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
どんな助けでも大歓迎です。ありがとう。