无法识别的选择器发送到AppDelegate中的实例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法识别的选择器发送到AppDelegate中的实例相关的知识,希望对你有一定的参考价值。
无论应用程序是打开还是在后台运行,我都试图获得一个每5秒钟调用一次的方法,所以在我的AppDelegate中,我认为有一个定时器每隔5秒调用一个方法是个好主意:
var helloWorldTimer = Timer.scheduledTimer(timeInterval: 5.0, target: self, selector: #selector(sayHello), userInfo: nil, repeats: true)
@objc func sayHello()
{
print("hello World")
}
但是,我收到此错误:
NSInvalidArgumentException', reason: '-[_SwiftValue sayHello]: unrecognized selector sent to instance
我不完全确定为什么因为该方法被正确引用?有谁知道我为什么会收到这个错误?
答案
你崩溃是因为在AppDelegate完全初始化之前你不能使用self
(target: self
)。所以你应该用这种方式初始化计时器:
var helloWorldTimer:Timer?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
self.helloWorldTimer = Timer.scheduledTimer(timeInterval: 5.0, target: self, selector: #selector(sayHello), userInfo: nil, repeats: true)
return true
}
引用Setting a Default Property Value with a Closure or Function的Apple文档:
如果使用闭包来初始化属性,请记住在执行闭包时尚未初始化实例的其余部分。这意味着您无法从闭包中访问任何其他属性值,即使这些属性具有默认值。
此外:
您也不能使用隐式self属性,也不能调用任何实例的方法。
以上是关于无法识别的选择器发送到AppDelegate中的实例的主要内容,如果未能解决你的问题,请参考以下文章
AppDelegate setFullscreen:无法识别的选择器发送到实例
AppDelegate - 发送到实例的无法识别的选择器[关闭]
尝试获取 AppDelegate 时出现“无法识别的选择器发送到实例”错误