Skip to content

Latest commit

 

History

History

iOS10 Advanced Segues

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Table View

  • Viewcontroller should adopt the UITableViewDataSource, UITableViewDelegate

Conforming to protocol UITableViewDataSource

public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {        
  return 4
}
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  let cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "Cell")
  cell.textLabel?.text = "Row \(indexPath.row)"
        
  return cell
}

when you select table view cell,

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  activeRow = indexPath.row
  performSegue(withIdentifier: "toSecondViewController", sender: nil)        
}

Segue

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
     
        if segue.identifier == "toSecondViewController" {
            
            let secondViewController = segue.destination as! SecondViewController
            
            secondViewController.activeRow = activeRow
            
        }
    }