swift – 表达式解析为未使用的函数

前端之家收集整理的这篇文章主要介绍了swift – 表达式解析为未使用的函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先让我说我对编程很新.我想要做的是添加一个按钮,当按下播放音乐时,再次按下音乐停止.理想情况下,第三次按下按钮时,音乐将重置.在尝试实现这一点时,我收到错误消息“表达式解析为未使用的功能”,因为我非常新的所有的帮助,我在网上找到没有任何意义.
import UIKit
import AVFoundation

class ViewController: UIViewController {
    @IBOutlet weak var janitor: UIImageView!
    var pianoSound = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("C",ofType: "m4a")!)
    var audioPlayer = AVAudioPlayer()

    override func viewDidLoad() {
        super.viewDidLoad()

        audioPlayer = AVAudioPlayer(contentsOfURL: pianoSound,error: nil)
        audioPlayer.prepareToPlay()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }


        @IBAction func PianoC(sender: AnyObject) {

        audioPlayer.play()

            if audioPlayer.playing { audioPlayer.stop} else {  audioPlayer.play}
}
}
在马丁R的评论之后,
if audioPlayer.playing { audioPlayer.stop} else {  audioPlayer.play}

在这一行上,你没有调用停止和播放功能,而只是访问它们.解决一个未使用的功能是试图告诉你,你有一个表达式返回一个函数类型,但你永远不会调用它(audioPlayer.stop和audioPlayer.play是这里的表达式).

为了摆脱这个错误,可能产生正确的行为,请尝试调用这些函数.

if audioPlayer.playing { 
    audioPlayer.stop()
} else {  
    audioPlayer.play()
}
原文链接:https://www.f2er.com/swift/319636.html

猜你在找的Swift相关文章