gpt4 book ai didi

ios - UILabel 按下时会使应用程序崩溃

转载 作者:行者123 更新时间:2023-11-29 01:09:55 25 4
gpt4 key购买 nike

您好,我是 iOS 应用程序编程的新手,遇到过这个问题。如果它是重复的,我很抱歉。我已经彻底搜索并(尝试)阅读了与此问题相关的所有线程,但到目前为止还没有修复它。

我正在尝试制作一个标签,当按下时它会变成其他东西。标签是在另一个类中创建的,并放在 View 中。此外,我正在尝试在不放置按钮的情况下执行此操作。这是代码。

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var mountainImage: UIImageView!
@IBOutlet weak var mphView: Speed!


override func viewDidLoad() {
super.viewDidLoad()
setImage()
mphView.backgroundColor = UIColor(white: 0.2, alpha: 0.5)
mphView.layer.borderColor = UIColor(red: 222, green: 222, blue: 222, alpha: 1).CGColor
mphView.layer.borderWidth = 1
// Do any additional setup after loading the view, typically from a nib.
let touchSpeedLabel = UITapGestureRecognizer(target: self, action: "speedLabelTouched")

mphView.addGestureRecognizer(touchSpeedLabel)
mphView.userInteractionEnabled = true
}

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

}
func speedLabelTouched(sender : UITapGestureRecognizer){
print("Lol this worked")
}
}

当我按下标签时,应用程序崩溃并出现此错误:

speedLabelTouched]:发送到实例 0x157d838c0 的无法识别的选择器*** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“无法识别的选择器发送到实例 0x157d838c0”

在此先感谢您的帮助!

最佳答案

您告诉它使用一种名为“speedLabelTouched”的方法(无参数),但您已经实现了一种名为“speedLabelTouched:”的方法(一个参数)。

它很合理地找不到无参数版本。

关于ios - UILabel 按下时会使应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35877323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com