在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
使用@objcMembers关键字,将类中的所有方法暴露给Objc (效果等同于为所有方法加上@objc)。
示例代码: @objcMembers class MyController: UIViewController { func login() { } }
等同于为login方法加上@objc关键字。
参考链接: https://www.hackingwithswift.com/example-code/language/what-is-the-objcmembers-attribute http://biuer.club/2018/05/08/Swift3、4中的-objc、-objcMembers和dynamic/ https://docs.swift.org/swift-book/ReferenceManual/Attributes.html |
请发表评论