2016-01-08 71 views
0

我找不到實際hamcrest.framework - 只有源代碼。要實際包含到xcode中的步驟是什麼? 我試圖編譯源代碼,但沒有將它連接到我想要創建的新項目。如何添加Hamcrest到XCODE?

回答

1

這其實很簡單。 Ray Wenderlich的網頁上有一個非常棒的教程!因此,請檢查:http://www.raywenderlich.com/97014/use-cocoapods-with-swift

1)創建一個Xcode項目(要使用Hamcrest)

2)關閉的Xcode

3)打開終端窗口和Xcode項目文件轉到路徑

4)(如果尚未安裝),安裝的CocoaPods:(這需要相當長的一段,所以不必驚慌)

sudo gem install cocoapods 
pod setup --verbose // for verbose output 
pod init // if it fails with error message you might not be in the correct path) 

5)打開POD-文件

open -a Xcode Podfile 

6)編輯波德-文件

platform :ios, "8.0" 
use_frameworks! 

7)如github上描述的整合hamcrest(swifthamcrest)

target 'HamcrestDemoTests' do // name of your File 
    pod 'SwiftHamcrest' 
end 

8)安全的文件,並開始安裝

pod install 

9)使用01打開您的項目文件

10)在你的TestSuite

import XCTest 
import Hamcrest 

@testable import test 

class testTests: XCTestCase { 

進口Hamcrest不要擔心初始的錯誤,它無法找到該模塊。他們將在首次建設項目後離開。