The @objc attribute is used to make Swift code available to Objective-C. It allows Swift classes, methods, and properties to be visible and accessible to Objective-C code.
For example, if you have a Swift class called MyClass, you can make it visible to Objective-C code by adding the @objc attribute before the class declaration:
@objc class MyClass {
// class code here
}