VC推送中的线程1错误?

时间:2018-07-30 00:52:50

标签: swift segue

我的应用当前有3个VC。 rootVC通过UIButton模态地显示第二个VC-效果很好-但是我很难在第二个VC中的UILabel点击后使第三个VC出现。

这是SecondVC中处理抽头的代码:

var goToStats : UILabel {
        var label = UILabel()
        label.frame = CGRect(x:0, y:0, width: 300, height: 60)
        label.center = CGPoint(x: view.center.x, y: view.center.y + 250)
        label.text = "Statistical Breakdown"
        label.font = UIFont(name: "Arial", size: 30)
        label.textAlignment = .center
        label.backgroundColor = UIColor(
                displayP3Red: 1/255,
                green: 102.0/255,
                blue: 102.0/255,
                alpha: 1)
        label.isUserInteractionEnabled = true
        label.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(handleTap)))
        return label
        }

    view.addSubview(goToStats)
}

@objc func handleTap() {
    print("Tapped!")

    let thirdVC = ThirdVC()
    self.navigationController!.present(thirdVC, animated: true, completion: nil)
}

运行时,出现以下错误:

error

有什么解释吗?我以为也许没有与第二个VC关联的导航控制器(因为它返回nil),但是VC本身位于导航堆栈上,所以我认为情况并非如此。我的第三个VC有问题吗?这是当前代码:

import Foundation
import UIKit

class thirdVC : ViewController {


override func viewDidLoad() {
    super.viewDidLoad()

    view.backgroundColor = UIColor.green
}

}

感谢您的时间!

1 个答案:

答案 0 :(得分:1)

您的rootViewController可能是navigationController,但是当您present时,

let secondVC = SecondVC()
self.navigationController!.present(secondVC, animated: true, completion: nil)

这并不意味着SecondVC将有一个navigationController。要为navigationController使用SecondVC,您需要将此ViewController嵌入到navigationController中,如下所示,

let secondVC = SecondVC()
let secondNavC = UINavigationController(rootViewController: secondVC)
self.navigationController!.present(secondNavC, animated: true, completion: nil)

现在,如果您将ThirdVC中的SecondVC呈现如下,那么它将起作用

let thirdVC = ThirdVC()
self.navigationController!.present(thirdVC, animated: true, completion: nil)

如果您没有将第二个ViewController嵌入UINavigationController内,则会发生崩溃,因为您强行解包(!navigationController在第二ViewController中可用。