我无法使用快速编程语言在表格 View 中显示数组的元素。我做了一些研究,但无法解决问题。在下面,您可以从这里查看我的代码并以.zip文件格式下载项目:http://1drv.ms/1Ca2hyp

我也可以给一些视频。他们是11分10秒。总长

import UIKit

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet var myTableView: UITableView!
    var cars = [String]()
    var newCar: String = ""

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        cars = ["BMW","Audi", "Volkswagen"]
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

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

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

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("myCell", forIndexPath: indexPath) as UITableViewCell

        cell.textLabel?.text = cars[indexPath.row]

        return cell
    }

}

最佳答案

您忘记将 Controller 注册为 UITableView 的数据源。
将此添加到您的代码中:

@IBOutlet var myTableView: UITableView! {
    didSet {
        myTableView.dataSource = self
    }
}

关于ios - 快速在tableview中显示数组项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29011595/

10-08 20:58