I\'m trying to pass the ILTItem variable into my ILTViewController, triggered by AppDelegate.swift when the user launches my app via a deeplink.
The code I have erro
Had a similar issue in this code
array.first { $0 == item }
The problem was with $0 not conforming to Equatable protocol. In my case it conformed to NSObjectProtocol and simple pointer comparison was enough, so I fixed the issue with
$0
Equatable
NSObjectProtocol
array.first { $0 === item }