Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
557 views
in Technique[技术] by (71.8m points)

ios - Swift unrecognized selector sent to instance - What am I missing?

I can't see why the following button is throwing an error:2014-08-13 00:29:57.674 view1[26581:842344] -[view1.ViewController buttonAction:]: unrecognized selector sent to instance 0x797731c0 2014-08-13 00:29:57.677 view1[26581:842344] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[view1.ViewController buttonAction:]: unrecognized selector sent to instance 0x797731c0'. Any help appreciated. Many Thanks

    import UIKit

        class ViewController: UIViewController {

        override func viewDidLoad() {
        super.viewDidLoad()


        func buttonAction(sender:UIButton)
        {
            println("Button tapped")
        }

        let windowsize = CGRect(x: 0, y: 0, width: 320, height: 480)
        let labelsize = CGRect(x: 0, y: 200, width: 140, height: 60)
        let myButton = UIButton(frame: CGRectMake(0, 0, 100, 100))



        let myView = UIView(frame: windowsize)
        let viewwidth = myView.frame.width
        let spaceleft = (viewwidth - labelsize.width)/2

        myView.backgroundColor = UIColor .blackColor()
        let myLabel = UILabel(frame:labelsize)
        myLabel.frame.origin.x = spaceleft
        myLabel.text = "Hello"
        myLabel.font = UIFont(name: "Chalkduster", size: 22)
        myLabel.textColor = UIColor .whiteColor()
        myLabel.textAlignment = NSTextAlignment.Center


        myLabel.backgroundColor = UIColor .redColor()
        //myView.addSubview(myButton)

        myView.addSubview(myLabel)
        self.view.addSubview(myView)



        let button   = UIButton.buttonWithType(UIButtonType.System) as UIButton
        button.frame = CGRectMake(100, 100, 100, 50)
        button.backgroundColor = UIColor.greenColor()
        button.setTitle("Test Button", forState: UIControlState.Normal)
        button.addTarget(self, action: "buttonAction:", forControlEvents: UIControlEvents.TouchUpInside)
        myView.addSubview(button)



        // Do any additional setup after loading the view, typically from a nib.
    }



    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Your buttonAction target is nested inside your viewDidLoad() method. Move it outside and it should be reachable.

class ViewController: UIViewController {

    func buttonAction(sender:UIButton)
    {
        println("Button tapped")
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        // ...

        let button   = UIButton.buttonWithType(UIButtonType.System) as UIButton
        // ...
        button.addTarget(self, action: "buttonAction:", forControlEvents: UIControlEvents.TouchUpInside)
        myView.addSubview(button)
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...