Ios 尝试显示另一个视图控制器时出现Sigabrt

Ios 尝试显示另一个视图控制器时出现Sigabrt,ios,swift,button,viewcontroller,Ios,Swift,Button,Viewcontroller,我想去另一个视图控制器时,按下按钮我的btnSignUp,如果我写这样的代码,我有错误“sigabrt”。我该怎么办 import UIKit import SnapKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.view.backgroundColor = UIColor(red: 15/255,

我想去另一个视图控制器时,按下按钮我的btnSignUp,如果我写这样的代码,我有错误“sigabrt”。我该怎么办

import UIKit
import SnapKit

class ViewController: UIViewController {

    override func viewDidLoad() {

        super.viewDidLoad()

        self.view.backgroundColor = UIColor(red: 15/255, green: 52/255, blue: 100/255, alpha: 1)

        createTop()

    }

    override func didReceiveMemoryWarning() {

 super.didReceiveMemoryWarning()

}

    func createTop() {

        let topView = UIView()

        self.view.addSubview(topView)

        topView.backgroundColor = UIColor(red: 15/255, green: 52/255, blue: 100/255, alpha: 1)

        topView.snp_makeConstraints { (make) -> Void in

            make.width.equalTo((self.view.frame.width/10)*8)
make.height.equalTo(self.view.frame.height/5)

            make.centerX.equalTo(self.view)

            make.top.equalTo(self.view).offset(self.view.frame.height/15)
        }



        let btnSignUp = UIButton()

        self.view.addSubview(btnSignUp)

        btnSignUp.backgroundColor =  UIColor(red: 15/255, green: 52/255, blue: 100/255, alpha: 1)

        btnSignUp.layer.borderColor = UIColor.whiteColor().CGColor

        btnSignUp.layer.borderWidth = 1

        btnSignUp.layer.cornerRadius = 6

        btnSignUp.setTitle("Sign Up", forState: UIControlState.Normal)

        btnSignUp.titleLabel?.font = UIFont(name: "AvenirNext-Regular", size: 17)

        btnSignUp.snp_makeConstraints { (make) -> Void in

 make.width.equalTo(((self.view.frame.width/10)*7)+40)

            make.height.equalTo(self.view.frame.height/13)

            make.top.equalTo(ORView.snp_bottom).offset(20)

            make.centerX.equalTo(self.view)
        }

        btnSignUp.addTarget(self, action: "buttonAction", forControlEvents: UIControlEvents.TouchUpInside)

  func buttonAction(sender:UIButton!)
        {

            let signUpVC = SignUpViewController()

            self.presentViewController(signUpVC, animated: true, completion: nil)

        }

    }
}

您的操作选择器
按钮操作
与您的函数声明不匹配-它需要一个参数,因此选择器将为
按钮操作:

btnSignUp.addTarget(self, action: "buttonAction:", forControlEvents: UIControlEvents.TouchUpInside)
另外,检查括号。您的
buttonAction
函数似乎是在
func createTop()中声明的


最后,我怀疑您是否想通过
SignUpViewController()
获得新的视图控制器-如果您使用的是一个故事板,您想调用
instanceeviewcontrollerwhithidentifier

我有线程1:SIGABRT错误,如何解决此问题,请帮助我,我花了两天时间来解决这个问题,SIGABRT出现在许多场景中,启用僵尸和检查类AppDelegate:UIResponder,UIApplicationDelegate{您使用的是xib还是故事板?快照工具包,而不是故事板
func createTop() {

    let topView = UIView()

    self.view.addSubview(topView)

    topView.backgroundColor = UIColor(red: 15/255, green: 52/255, blue: 100/255, alpha: 1)

    topView.snp_makeConstraints { (make) -> Void in

        make.width.equalTo((self.view.frame.width/10)*8)
make.height.equalTo(self.view.frame.height/5)

        make.centerX.equalTo(self.view)

        make.top.equalTo(self.view).offset(self.view.frame.height/15)
    }

    let btnSignUp = UIButton()

    self.view.addSubview(btnSignUp)

    btnSignUp.backgroundColor =  UIColor(red: 15/255, green: 52/255, blue: 100/255, alpha: 1)

    btnSignUp.layer.borderColor = UIColor.whiteColor().CGColor

    btnSignUp.layer.borderWidth = 1

    btnSignUp.layer.cornerRadius = 6

    btnSignUp.setTitle("Sign Up", forState: UIControlState.Normal)

    btnSignUp.titleLabel?.font = UIFont(name: "AvenirNext-Regular", size: 17)

    btnSignUp.snp_makeConstraints { (make) -> Void in

         make.width.equalTo(((self.view.frame.width/10)*7)+40)
         make.height.equalTo(self.view.frame.height/13)
         make.top.equalTo(ORView.snp_bottom).offset(20)
         make.centerX.equalTo(self.view)
    }

    btnSignUp.addTarget(self, action: "buttonAction", forControlEvents: UIControlEvents.TouchUpInside)
}

func buttonAction(sender:UIButton!) {

    let signUpVC = SignUpViewController()
    self.presentViewController(signUpVC, animated: true, completion: nil)
}