使用Swift在MainStoryboard表视图中显示数组?

时间:2015-04-20 13:20:48

标签: arrays uitableview swift tableview

我有能力使用Swift语言创建数组。但是,然后能够映射此数组以显示在iOS上的Main.storyboard中,我正在绘制空白。我理解可能有TableViewController s和TableView s和TableViewCell s,但不知何故,我根本无法从

开始
 myArray ["Viktor Schauberger", "Nikola Tesla", "Wilhelm Reich", "John Bedini", "Walter Russell", "Ed Leedskalnin", "R. Buckminster Fuller", "John Keely", "Nathan Stubblefield", "Ismael Aviso", "Hector Perez Torres", "Thomas Henry Moray"]

能够在iOS模拟器中显示它,然后通过显示一系列事物来使它们可以点击。但就目前而言,我只是满足于弄清楚如何使用Swift 1.2在TableView / TableViewController中直观地显示此数组 - 无论哪个适用。

1 个答案:

答案 0 :(得分:1)

override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath:indexPath) as MyCell
    // no "if" - the cell is guaranteed to exist
    // ... do stuff to the cell here ...
    cell.textLabel.text = self.Myarray objectAtIndex:indexPath.row;
    // ...
    return cell
}

试试这个:)

或转到下面的此链接可能会对您有所帮助https://www.weheartswift.com/how-to-make-a-simple-table-view-with-ios-8-and-swift/

用于加载原型单元格 prototype cell