What is difference between "protocol" and "delegate"?

Submitted by: Muhammad
protocol is used the declare a set of methods that a class that "adopts" (declares that it will use this protocol) will implement.
Delegates are a use of the language feature of protocols. The delegation design pattern is a way of designing your code to use protocols where necessary.
Submitted by: Muhammad

Read Online iOS Developer Job Interview Questions And Answers