What is a protocol in iOS?
1577
02-Jan-2017
Updated on 19-Sep-2020
Sunil Singh
02-Jan-2017A protocol is similar to an interface from Java. A protocol is a group of related properties and methods that can be implemented by any class.Any class can implement a protocol and other classes can then send messages to that class based on the protocol methods.