Skip to content

Commit

Permalink
Fix for evgenyneu#204
Browse files Browse the repository at this point in the history
1) Resolved "Cannot find type 'XXX' in scope" by adding `import Cosmos`
2) Resolved "No known class method for selector 'YYY'" by replacing `@objc` by `@objcMembers` so all methods within the class will be exposed to Objective-C.
  • Loading branch information
funnel20 authored Sep 3, 2024
1 parent 4dc8ad6 commit 7285afa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Demo/CosmosSettingsObjCBridge.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import UIKit
import Cosmos

/**

Expand All @@ -23,7 +24,7 @@ import UIKit
[CosmosSettingsObjCBridge setUpdateOnTouch: NO inCosmosView:self.cosmosView];

*/
@objc public class CosmosSettingsObjCBridge: NSObject {
@objcMembers public class CosmosSettingsObjCBridge: NSObject {


/**
Expand Down

0 comments on commit 7285afa

Please sign in to comment.