Mach-O Linker (Id) Error
I have just added the Google Tools for Mac OAuth classes to a project and get the following linker error
Any ideas what I need to do? It is an iPad app if that开发者_Python百科 makes any difference.
Thanks for your help :-)
The error is a result of redefining a symbol in your RootViewController. There are few possible reasons for this.
- In RootViewController you explicitly defined kGTMOAuth2ServiceProviderGoogle
- You used #include instead of #import
- You #import or #include the implementation file (.m)
精彩评论