Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 533 Bytes

Protocols.md

File metadata and controls

9 lines (6 loc) · 533 Bytes

Protocols

Protocols declare an interface (methods and properties) that is expected to be used for a particular situation, independent of a particular class. Protocols are often used to either declare an interface that may have many different implementations (e.g. NSCoding) or defer important implementation details to another object (e.g. UITableViewDataSource).

Table of Contents