iOS 应用中的 Twitter 集成
Twitter integration in iOS app
在我的 ios
应用程序中,我正在尝试将 Twitter 与 fabric 集成,并且我遵循了 fabric 提供的所有文档
https://docs.fabric.io/ios
我在构建我的应用程序时遇到问题,然后出现一些错误
1.TwitterCore.framework/Headers/TwitterCore.h:20:9: 'Cocoa/Cocoa.h' file not found
2.TwitterKit.framework/Headers/TwitterKit.h:12:9: Could not build module 'TwitterCore'
3.AppDelegate.m:14:9: Could not build module 'TwitterKit'
所以我无法构建应用程序。
我遇到了完全相同的问题,Cocoa/Cocoa.h header 用于 OS X,因为我们正在做 iOS,所以我删除了这个 header.打开你的 TwitterCore.h
这个片段
#if IS_UIKIT_AVAILABLE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif
变成
#if IS_UIKIT_AVAILABLE
#import <UIKit/UIKit.h>
#endif
现在我的项目构建得很好。
在我的 ios
应用程序中,我正在尝试将 Twitter 与 fabric 集成,并且我遵循了 fabric 提供的所有文档
https://docs.fabric.io/ios
我在构建我的应用程序时遇到问题,然后出现一些错误
1.TwitterCore.framework/Headers/TwitterCore.h:20:9: 'Cocoa/Cocoa.h' file not found
2.TwitterKit.framework/Headers/TwitterKit.h:12:9: Could not build module 'TwitterCore'
3.AppDelegate.m:14:9: Could not build module 'TwitterKit'
所以我无法构建应用程序。
我遇到了完全相同的问题,Cocoa/Cocoa.h header 用于 OS X,因为我们正在做 iOS,所以我删除了这个 header.打开你的 TwitterCore.h
这个片段
#if IS_UIKIT_AVAILABLE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif
变成
#if IS_UIKIT_AVAILABLE
#import <UIKit/UIKit.h>
#endif
现在我的项目构建得很好。