码:
let offsetTime = 0dispatchQueue.main.asyncAfter(deadline: .Now() + offsetTime) { //Expression type '(_,_.StrIDe) -> _' is ambiguous without more context self.currentTaskForUser.text = "Starting\n" + note + "in" self.timerDown(from: 3,to: 1)}dispatchQueue.main.asyncAfter(deadline: .Now() + offsetTime + 3) { //Expression type '(_,_.StrIDe) -> _' is ambiguous without more context self.currentTaskForUser.text = note let difficultyValue = Int(self.difficultyControl.TitleForSegment(at: self.difficultyLevel.selectedSegmentIndex)!)! self.timerUp(from: 1,to: difficultyValue) self.offsetTime += 13}表达式.Now()返回类型dispatchTime,它是一个结构.
let offsetTime = 0将变量初始化为Int.该错误具有误导性,实际上它是一种类型不匹配
虽然编译器可以推断出数字文字的类型
dispatchQueue.main.asyncAfter(deadline: .Now() + 3)
将Int文字或变量添加到dispatchTime值的最可靠方法是具有关联值的dispatchTimeInterval情况.
dispatchQueue.main.asyncAfter(deadline: .Now() + .seconds(offsetTime)
和
dispatchQueue.main.asyncAfter(deadline: .Now() + .seconds(offsetTime) + .seconds(3))
有四个dispatchTimeInterval枚举情况
> .seconds(Int)> .milliseconds(Int)> .microseconds(Int)> .nanoseconds(Int)
总结以上是内存溢出为你收集整理的swift – 表达式类型'(_,_ .tride) – > _’是不明确的,没有更多的上下文全部内容,希望文章能够帮你解决swift – 表达式类型'(_,_ .tride) – > _’是不明确的,没有更多的上下文所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)