Sync
Sync copied to clipboard
protocol SyncDelegate: class
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 ?