安装新pod文件时出错

时间:2014-05-27 07:09:52

标签: ios iphone objective-c cocoapods

我的项目中安装了 pod 文件。

现在我想为' PhotoPickerPlus '添加新的pod文件,但我收到重复的符号错误和警告,如下面的屏幕截图所示;

enter image description here

我尝试使用

安装pod文件

pod install

已成功安装。我还包括了所有必需的框架。

我的pod文件如下;

platform :ios, '6.0'

# ignore all warnings from all pods
inhibit_all_warnings!

pod 'ARGenericTableViewController', '~> 1.0.0'
#pod 'CocoaLumberjack', '~> 1.6'
pod 'TBXML', '~> 1.5'
pod 'GoogleAnalytics-iOS-SDK', '~> 2.0beta4'
#pod 'FlurrySDK', '~> 4.1.0'
pod 'SDWebImage', '~> 3.5.4'
#pod 'PSTCollectionView', '~> 1.2.0'
pod 'BSKeyboardControls', '~> 2.2'
pod 'HockeySDK', '~> 3.5.4'
pod 'MBProgressHUD', '~> 0.8'
pod 'MKMapView+AttributionView', '~> 0.1.0'
pod 'Facebook-iOS-SDK', '~> 3.13.0'
pod 'TTTAttributedLabel', '~> 1.9.0'
pod 'JASidePanels'
#pod 'ARChromeActivity', '~> 1.0.1'
#pod 'TUSafariActivity', '~> 1.0.0'
pod 'REComposeViewController', '~> 2.3.1'
pod 'iRate', '~> 1.9.3'
pod 'PhotoPickerPlus', '~> 2.2'
pod 'UIPhotoGallery', :podspec => 'UIPhotoGallery.podspec'
But I am getting errors after installing this file. 

可能是什么问题?

2 个答案:

答案 0 :(得分:1)

也许您项目中Other Linker Flags内的Build Settings设置错误。点击Project Navigator内的项目。如果您在PROJECT上选择了应用,则Build Settings应该如下所示

enter image description here

在我的项目中,我还删除了Other Linker Flags内的所有内容,但如果插入此内容,它可能适用于您

enter image description here

当然,在这些步骤之后永远不会忘记清洁。

答案 1 :(得分:1)

在项目设置中,检查目标的“构建阶段”的“编译源”部分。确保没有重复的副​​本。

顺便说一句,这些错误是由https://github.com/gameclosure/trademob生成的,甚至不在您的pod文件中。

再次,验证您的项目设置。您可能正在尝试将pod文件添加到现有项目中。