0
我已將Parse框架導入到我的應用程序,並且它正確編譯代碼文件。然而,當我嘗試使用解析爲我的測試中,我得到了以下錯誤:錯誤Xcode 7.3.1 Swift 2測試時未找到解析
ld: framework not found Parse for architecture x86_64 clang: errror: linker command failed with exit code 1(use -v to see invocation)
我已經在建settins搜索路徑檢查,它似乎有正確的價值觀,並解析工作正常代碼文件。只有在測試文件中出現錯誤。
任何提示讚賞。
測試文件是:
@testable import Project
import Parse
import XCTest
class ProjectUITests: XCTestCase {
override func setUp() {
super.setUp()
continueAfterFailure = false
XCUIApplication().launch()
}
override func tearDown() {
super.tearDown()
}
}
隨時!快樂的編碼! :) – Dershowitz123