We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hi,
in Xcode 12.5 we receive this warning for the SyncDelegate declaration
public protocol SyncDelegate: class
Using 'class' keyword for protocol inheritance is deprecated; use 'AnyObject' instead
Could we fix this please to
public protocol SyncDelegate: AnyObject
as suggested ?