Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codertcet111/10f718eabb6fffc4a477e71bafacc107 to your computer and use it in GitHub Desktop.
Save codertcet111/10f718eabb6fffc4a477e71bafacc107 to your computer and use it in GitHub Desktop.
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "HistorySegue" {
if let viewController = segue.destination as? HistoryController {
if(barcodeInt != nil){
viewController.detailItem = barcodeInt as AnyObject
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment