目前我有一個ViewController
類包含UIScrollView
,在滾動視圖中我有另一個視圖控制器,我目前可以接收手勢識別。我的目標是能夠根據我點擊的哪個subViewController執行一個segue到一個不同的視圖控制器。從子ViewController執行segue
let scrollView = UIScrollView(frame: CGRect(x:0,y:0, width: self.view.frame.width, height:self.view.frame.height-106))
scrollView.delegate = self;
self.view.addSubview(scrollView);
let subView11 = subView(nibName: nil, bundle: nil);
subView1.view.frame = CGRect(x:0,y:0, width: self.view.frame.width, height: CGFloat(openReelHeight));
self.addChildViewController(subView1);
scrollView.addSubview(subView1.view);
subView.didMove(toParentViewController: self);
然後在子視圖類我有一個基本的觸摸識別功能:
@IBAction func tapOnView(_ sender: UITapGestureRecognizer) {
//change main View controller
}
顯示您嘗試過的代碼..? –
而不是發表評論中的代碼,你應該編輯你的問題。 –
是的,我意識到,格式化全部關閉 –