We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a92b66 commit 335ec3bCopy full SHA for 335ec3b
2 files changed
PluginHost/PluginInterface.swift
@@ -9,7 +9,7 @@
9
import Foundation
10
11
12
-protocol PluginInterface
+@objc protocol PluginInterface
13
{
14
var name: String { get }
15
SamplePlugin/SamplePlugin.swift
@@ -11,9 +11,9 @@ import Foundation
class SamplePlugin : PluginInterface
- var name = "SamplePlugin"
+ @objc var name = "SamplePlugin"
16
- required init() {
+ @objc required init() {
17
18
}
19
0 commit comments