swift
@objcMembers
class MyClass: NSObject {
    public var myProperty: String = "Hello"
    
    public func myMethod() {
        print("Method called")
    }
}
在这个例子中,MyClass 和它的所有公开成员(myProperty 和 myMethod)现在都可以在 Objective-C 代码中使用,而无需为每个成员单独添加 @objc 关键字。

  

posted on 2024-05-31 08:42  懂事长qingzZ  阅读(17)  评论(0编辑  收藏  举报