我在此代码中遇到以下错误:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("Cell") as? UITableViewCell
Run Code Online (Sandbox Code Playgroud)
错误:来自'UITableViewCell?'的沮丧?'UITableViewCell'只展开选项; 你的意思是用'!'?
有任何想法吗?
我目前正在使用Swift 2的Xcode 7 beta 4,尝试播放音频.我的代码中没有任何错误,但是当我按下播放按钮时,音频不会播放.我无法弄清楚出了什么问题.
import UIKit
import AVFoundation
class VesuviusViewController: UIViewController {
@IBOutlet weak var PausePlay: UIButton!
func playVes() {
do {
_ = try AVAudioPlayer(contentsOfURL: NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("Ves", ofType: "m4a")!))
} catch {
print("Error")
}
}
@IBAction func playButtonPressed(sender: AnyObject) {
playVes()
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
Run Code Online (Sandbox Code Playgroud)
更新 正确的代码:
import UIKit
import …Run Code Online (Sandbox Code Playgroud)