UITableView 数据源

UITableView Data Source

我收到 2 个错误。

第一个我很困惑,因为所有内容都在 {} 中,所以我不确定哪里出错了。

"Type 'StoriesViewController' does not conform to protocol 'UITableViewDataSource' Clicking fix adds:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { <#code#> }

和第二个错误

Ambiguous use of 'dequeueReusableCellWithIdentifier

我为 table 单元分配了来自主故事板的标识符 "storyCell"

完整代码:

// creating a custom color
extension UIColor {
    static var darkmodeGray = UIColor.init(red: 41/255, green: 42/255, blue: 47/255, alpha: 1)
}


class StoriesViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        <#code#>
    }


    @IBOutlet weak var tableView: UITableView!

    let storySelection = [("WeekOne"),("WeekTwo"),("WeekThree"),("WeekFour"),("WeekFive"),("WeekSix")]
    let storySelectionImages = [UIImage(named: "WeekOne"), UIImage(named: "WeekTwo"), UIImage(named: "WeekThree"), UIImage(named: "WeekFour"), UIImage(named: "WeekFive"), UIImage(named: "WeekSix")]



    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.

        self.view.backgroundColor = UIColor .darkmodeGray
    }

    //Part One
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    //Part Two
    func  tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return storySelection.count
    }

    //Part Three
    private func tableView(tableView :UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell=tableView.dequeueReusableCellWithIdentifier("storyCell", forIndexPath: IndexPath) as! TableViewCell
        cell.CoverArt.image=self.storySelectionImages[indexPath .row]
        return cell
    }
}

您的代码是 Swift 2(!) 代码。

更新方法签名的常用方法是将其注释掉,重新键入并使用代码完成。

或阅读 documentation,这总是一个好主意。

这三种方法是(numberOfSections如果只有一段可以省略)

func numberOfSections(in tableView: UITableView) -> Int {
    return 1
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return storySelection.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "storyCell", for: indexPath) as! TableViewCell
    cell.CoverArt.image = self.storySelectionImages[indexPath.row]
    return cell
}