Vorlesungen
  Download     DBS     Sprachen     Oberflächen     File Formats     Impressum     Datenschutz  
1. Sem
2. Sem
3. Sem
4. Sem
5. Sem
iOS
Android und JetPack
Wahlpflicht-SoSe
Wahlpflicht-WiSe
Projektwochen
Allgemein:
Startseite
Vorlesungen
Labore
Sinnvolle Programme
Lineare Regression
GUI-Entwurfsarbeit
Single-Format
Design Pattern-Termine
Observer1
Bsp2
Json-Array
Json-Dialogelemente
Webtechnologien

Manuelle seque zum InputViewController

Manuelle seque zum InputViewController


func jump2Segue() {
  if let indexPath = tableview.indexPathForSelectedRow {
     let city:City = cities[indexPath.row]
     let storyBoard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
     if let newViewController = storyBoard.instantiateViewController(withIdentifier: "InputViewController") as? InputViewController {
        let city:City = cities[indexPath.row]
         newViewController.city=city
         self.present(newViewController, animated: true, completion: nil)
      }
   }
}

func
Setzen der Farbe eines Labels