该代码在 Swift 1.2 中运行良好,但是当我更改 Xcode 7 (Swift 2) 时,出现错误,该错误写在下面的if
语句中。
let objFirstSound = AVPlayerItem(URL:NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource(self.objVowels?.main_sound, ofType: "mp3") ?? ""))
if objFirstSound != nil {
arrTemp.append(objFirstSound)
}
二元运算符“!=”不能应用于“AVPlayerItem”和“NilLiteralConvertible”类型的操作数
那么,我怎样才能检查AVPlayerItem
实际上是Nil
?