2017-04-03 92 views
0

Xcode的新手& iOS dev。 「沒有這樣的模塊'EVReflection'」試圖導入和使用EVReflection。我已經安裝並安裝了豆莢。這是我的 「吊艙安裝」 輸出:沒有這樣的模塊'EVReflection'

Analyzing dependencies 
Downloading dependencies 
Using EVReflection (4.8.0) 
Generating Pods project 
Integrating client project 
Sending stats 
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed. 

這裏是我的PodFile:

platform :ios, '9.0' 

target 'myproject' do 
    use_frameworks! 
    pod "EVReflection" 

    target 'myprojectTests' do 
    inherit! :search_paths 
    end 

    target 'myprojectUITests' do 
    inherit! :search_paths 
    end 

end 

回答

1

一旦你安裝你的豆莢,關閉的Xcode。然後打開回使用以下命令行:

$開放App.xcworkspace

清理項目,然後建設項目,並預期它會奏效。最後,你可以訪問它的屬性

+0

謝謝!那就是訣竅。我希望XCode可以在這方面變得更聰明。 –