bonjour à toutes et à tous !
je debut depuis très peu la programmation en swift ... et je bloque sur un code:
comment je peux récupérer le UIViewController (vc) qui est la partie d'un tableView, pour pouvoir y chipoter dans le storymode?Code:// func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { if indexPath.section == 1 { let vc = UIViewController() let lab = UILabel() lab.textColor = .blackColor() lab.numberOfLines = 0 lab.frame.size.width = 300 lab.text = "..." lab.sizeToFit() lab.frame.origin = CGPoint(x: 15, y: 100) vc.view.addSubview(lab) navigationController?.pushViewController(vc, animated: true) } else { if indexPath.row == 0 { UIApplication.sharedApplication().openURL(NSURL(string:"www.google.be")!) } } }
merci d'avance!
-----