April 2017
Intermediate to advanced
316 pages
9h 33m
English
Protocol inheritance is where one protocol can inherit the requirements from one or more other protocols, as shown in the following code:
protocol MobileAppUserProtocol: UserProtocol { }
MobileAppUserProtocol inherits from UserProtocol so it will have all the defined and extended methods.
Read now
Unlock full access