gpt4 book ai didi

swift - 在 Xcode 8.3 中编译时出现段错误 11

转载 作者:行者123 更新时间:2023-11-30 12:29:45 25 4
gpt4 key购买 nike

当我尝试编译时,我在 Xcode 中收到“段错误 11”。这是我的代码:

import Foundation
import UIKit

class DataImportController {
func startImport() {
if let dataPath = Bundle.main.path(forResource: "stops", ofType: "csv") {
do {
let fileContents = try String(contentsOfFile: dataPath, encoding:.utf8)
let contents = fileContents.components(separatedBy: CharacterSet.newLines)
} catch {
print(error)
}
}
}
}

这是消息转储:

1.  While type-checking 'startImport' at /Users/Jaime/Developer/ETA/ETA/Model Controllers/DataImportController.swift:13:5
2. While type-checking declaration 0x7fb185b34948 at /Users/Jaime/Developer/ETA/ETA/Model Controllers/DataImportController.swift:17:17
3. While type-checking expression at [/Users/Jaime/Developer/ETA/ETA/Model Controllers/DataImportController.swift:17:32 - line:17:90] RangeText="fileContents.components(separatedBy: CharacterSet.newLines)"

代码有问题吗?

提前致谢。

最佳答案

表达式CharacterSet.newLines毫无意义。您的意思是 CharacterSet.newlines...?进行该替换(或仅编写.newlines)将允许您的代码编译。

关于swift - 在 Xcode 8.3 中编译时出现段错误 11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43712726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com