protocolButtonPressedDelegate:AnyObject{funcmethodToBeImplemented()}classReceivingClass:UIViewController,ButtonPressedDelegate{funcmethodToBeImplemented(){//Conform to protocolprint(“Buttonpressed”)}}classSendingClass:UIViewController{weakvardelegate:ButtonPressedDelegate?//Create field for reference. Use “weak var” to avoid retain cycle.@IBActionfuncsend(_sender:Any){delegate.methodToBeImplemented()//Call method}}letreceivingC=ReceivingClass()letsendingC=SendingClass()sendingC.delegate=receivingC.self//Pass the reference. Normally you would not do it like this, but this is the concept.//Better places to assign a reference://-From inside cellForRowAt()//-In a segue//-As you instantiate sending class from receiving class//Common errors://-Protocols are one-to-one. If you are trying to subscribe multiple receivers, you will need to implement a multicast delegate. Dm for code snippet.//-Forgetting to assign self to delegate field in sending class.//-Issues with “weak self”, make sure to conform the protocol to AnyObject//For more code ideas, and a explanation an why we use “weak var”: https://medium.com/macoclock/delegate-retain-cycle-in-swift-4d9c813d0544