>>66
titleLable = UILabel(…)
titleLabel.text = “OK”
browser = SFSafariViewController(url: url)
present(browser, animated: true, completion: nil)
self.view.addSubview(titleLabel)

なんてコードを書いたとする。@viewDidLoad

ここは、
You usually override this method to perform additional initialization on views that were loaded from nib files.
なので、
titleLabel.text = “OK”
なんてコード(managing the view)を書くところで、
present(browser, animated: true, completion: nil)
なんていう(presenting the viewcontroller)コードを書いても無視される。