Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appfigurate SE 2.0.0 displays error "Appfigurate: publicKey method not found" on Swift APLConfiguration subclasses #1

Closed
electricbolt opened this issue Jun 21, 2020 · 1 comment

Comments

@electricbolt
Copy link
Owner

When attempting to auto-generate the cipher text in @EncryptedStringPropertyListEdit property wrappers, the error "Appfigurate: publicKey method not found" is displayed in the Xcode editor window.

This occurs due to use of the @objcMembers on the class and not @objc on the publicKey method.

To work around until Appfigurate SE 2.0.1 is released, simply add @objc:

// problem:
override func publicKey() -> String {

// workaround:
@objc override func publicKey() -> String {

@electricbolt
Copy link
Owner Author

Fixed in version 2.0.1 available for download from the Mac App Store.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant