How do I make AppCode show protocol conformance?

63 Views Asked by At

When I use Xcode, it shows warnings telling me a class doesn't conform to a protocol. How should I make it do something similar when using AppCode?

I have searched for it, but I can't find a solution.

1

There are 1 best solutions below

0
On

You can press shift-enter on the protocol name to bring up a menu that will ask you if you want to generate protocol stubs, or you can click inside the class and press ctrl-o which will bring up a list of all the members that you can override. Just select the ones you want.