J'ai un objet (un UIViewController) qui peut ou non être conforme à un protocole que j'ai défini.
Je sais que je peux déterminer si l'objet est conforme au protocole, puis appeler la méthode en toute sécurité:
if([self.myViewController conformsToProtocol:@protocol(MyProtocol)]) {
[self.myViewController protocolMethod]; // <-- warning here
}
Cependant, XCode affiche un avertissement:
warning 'UIViewController' may not respond to '-protocolMethod'
Quel est le bon moyen d'éviter cet avertissement? Je n'arrive pas à convertir self.myViewController
en classe MyProtocol
.