小编yze*_*t00的帖子

UITableVIewCell错误Xcode 7/Swift 2

我在此代码中遇到以下错误:

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'只展开选项; 你的意思是用'!'?

有任何想法吗?

uitableview ios swift xcode7 swift2

15
推荐指数
1
解决办法
8670
查看次数

App Store Connect 添加用户时允许开发者资源复选框

我正在尝试将用户添加到我的 App Store Connect 以便他们可以上传构建,但在门户中它不允许我授予他们访问证书的权限,因为复选框保持灰色。我是帐户持有人和管理员。“访问证书、标识符和配置文件”保持灰色。即使添加为用户并尝试编辑他们的权限,也无法更改此设置。

xcode app-store app-store-connect

5
推荐指数
1
解决办法
1988
查看次数

在Xcode 7/Swift 2中播放音频不起作用

我目前正在使用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)

audio xcode ios xcode7 swift2

0
推荐指数
1
解决办法
3582
查看次数

标签 统计

ios ×2

swift2 ×2

xcode ×2

xcode7 ×2

app-store ×1

app-store-connect ×1

audio ×1

swift ×1

uitableview ×1