ios – NSNotificationCenter addObserver在Swift中调用私有方法

ios – NSNotificationCenter addObserver在Swift中调用私有方法,第1张

概述我使用addObserver API接收通知: NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOFReceivedNotication:", name:"NotificationIdentifier", object: nil) 我的方法是: func methodOFReceivedNoticati 我使用addobserver API接收通知:
NSNotificationCenter.defaultCenter().addobserver(self,selector: "methodoFReceivednotication:",name:"NotificationIDentifIEr",object: nil)

我的方法是:

func methodoFReceivednotication(notification: NSNotification){//Action take on Notification}

是的,它的作品!
但是当我将方法methodoFReceivednotication更改为private时:

private func methodoFReceivednotication(notification: NSNotification){//Action take on Notification}

xCode向我发送错误:无法识别的选择器发送到实例

当目标是自我时,如何调用私有方法?我不想将methodoFReceivednotication方法暴露给任何其他方法.

解决方法 只需使用动态修饰符标记它,或在方法声明中使用@objc属性
dynamic private func methodoFReceivednotication(notification: NSNotification){    //Action take on Notification}

要么

@objc private func methodoFReceivednotication(notification: NSNotification){    //Action take on Notification}
总结

以上是内存溢出为你收集整理的ios – NSNotificationCenter addObserver在Swift中调用私有方法全部内容,希望文章能够帮你解决ios – NSNotificationCenter addObserver在Swift中调用私有方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1111852.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存