更新到Xcode 8后,我收到错误

时间:2016-09-15 13:11:00

标签: ios xcode frameworks

我更新到最新的xcode后,在我的xcode中出现了这些错误:

enter image description here

我正在使用firebase和swift,错误发生在myProjectTests.swift文件中?谁能在这帮助我?

3 个答案:

答案 0 :(得分:0)

它说你的框架不见了。您可能只需要删除并重新导入框架。

答案 1 :(得分:0)

def gen(filename):
    with open(filename) as sample:
        for line in sample:
            line = line.rstrip()
            for ch in line:
                yield ch

def filled_filename(text):
    with open('test.txt', 'wb') as f:
        f.write(text)
    return 'test.txt'

filename = filled_filename(b'ABCDEF')
assert list(gen(filename)) == ['A', 'B', 'C', 'D', 'E', 'F']

答案 2 :(得分:0)

我通过简单地运行终端并再次安装pod来解决它。