2016-01-01 66 views
0

在我ios應用我試圖與Twitter的整合面料和我接着面料 https://docs.fabric.io/ios 提供我有一個問題,當我建立我的應用程序,然後一些錯誤在iOS應用Twitter的整合

的所有文檔

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模塊'TwitterCore'

3.AppDelegate.m:14:9:Could不構建模塊'TwitterKit'

所以我無法構建應用程序。

+0

您是否在使用Cocoapods進行面料集成? – technerd

+0

不,我不使用cocoapods,我只是手動安裝面料並運行它 –

回答

3

我有完全相同的問題,Cocoa/Cocoa.h頭是OS X的,因爲我們在做iOS,所以我刪除了這個頭文件。打開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 

現在我生成項目就好了。

+0

感謝它爲我工作 –