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